forum

Looping not working

posted
Total Posts
2
Topic Starter
ninaruru
I added a pulsation effect for my storyboard and even inserted the code to loop it but for some reason it isn't looping
I spaced the Fade and Scale twice like it should be and the Loop code once but the effect doesn't show nor loop.
only when i space all three actions the same number of times (one space) would the pulsation work but not loop.
Not sure if its the code in general or if it's something else entirely but I followed every loop tutorial perfectly and clearly
and for some reason it still doesn't loop. Does anyone know a fix?

[Events]
//Background and Video events
//Storyboard Layer 0 (Background)
//Storyboard Layer 1 (Fail)
//Storyboard Layer 2 (Pass)
//Storyboard Layer 3 (Foreground)
Sprite,Foreground,Centre,"Chill Nation.jpg",320,240
L,57714,8
F,1,57714,58265,1,0
S,0,57714,58265,1,1.1
Sprite,Foreground,Centre,"Chill Nation.jpg",320,240
F,1,67125,67677,1,0
S,0,67125,67677,1,1.1
Sprite,Foreground,Centre,"Chill Nation.jpg",320,240
L,76537,8
F,1,76537,77089,1,0
S,0,76537,77089,1,1.1
//Storyboard Sound Samples
sheela
Firstly you need to add a space or an underscore before every commands under the Loop function in order to make it work. For example:
L,57714,8
F,1,57714,58265,1,0
S,0,57714,58265,1,1.1
or
L,57714,8
_F,1,57714,58265,1,0
_S,0,57714,58265,1,1.1

Secondly the values in ms under the Loop command, like "57714,58265" in above, shouldn't be timestamps, but duration in ms. In this case, you want to do 58265-57714 to get the duration, and replace "57714,58265" by 0,551. 0 as the start of duration, and 551 as the end of duration.

I hope this helps you.
Please sign in to reply.

New reply