View Single Post
# 1 02-06-2010 , 04:48 AM
Registered User
Join Date: Oct 2008
Posts: 30

Image sequence speed?

Hey all, basically ive got a simple image sequence with an repeating loop (using expressions)

file3.frameExtension += 1;
if (file3.frameExtension > 9)
file3.frameExtension =1;

I wanted to know how do i go about changing the speed of the loop? i found online an expression, but it doesnt quiet work.

file3.frameExtension= floor ((frame - 1) / 3) + 1;
if (file3.frameExtension > 9)
file3.frameExtension =1;

With this expression, it does slow down the loop but it just stops.

Any help would be great

Thanks.


Last edited by pixel_poison; 02-06-2010 at 05:26 AM.