I have already written several "TASKS" to control the frame rate of the gif. However, if I have a significant number of animated gifs writing a function/handler for each it a bit cumbersome. Especially wher the gif fspec already has it.
K -==-=-=-=-=-=-==-=-=-=-=-=-=-=-==-=-=-=-=-=- Disclaimer: Any resemblance between the above views and those of my employer, my terminal, or the view out my window are purely coincidental. Any resemblance between the above and my own views is non-deterministic. The question of the existence of views in the absence of anyone to hold them is left as an exercise for the reader. The question of the existence of the reader is left as an exercise for the second god coefficient. (A discussion of non-orthogonal, non-integral polytheism is beyond the scope of this article.) --- On Mon 05/10, Scott Rossi < [EMAIL PROTECTED] > wrote: From: Scott Rossi [mailto: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Mon, 10 May 2004 12:19:25 -0700 Subject: Re: Can I alter the frame rate of an animated GIF by script? Recently, "Graham Samuel" wrote:<br><br>> I could reduce the number of animated GIFs in my app (which might be a<br>> cause of these difficulties) if I could change the frame rate of an<br>> animated GIF on the fly. So far I haven't found anything in the<br>> documentation about this: can anyone say if it's possible and if so, how to<br>> do it?<br><br>You can't change the frameRate but you don't need to rely on it either. Set<br>the repeatCount of your GIF to 0 and increment the currentFrame via script.<br><br>[example card script]<br> on playGIF<br> get the currentFrame of img myGIF<br> if it < the frameCount of img myGIF then<br> put it+1 into F<br> else put 1 into F<br> set the currentFrame of img myGIF to F<br> send "playGIF" to me in 100 milliseconds #10 FPS<br> end playGIF<br><br>See the list archives for more on this technique. A scripted solution gives<br>you much greater control over GIF playback than the built-in timing in<br>animated GIFs.<br><br> Regards,<br><br>Scott Rossi<br>Creative Director<br>Tactile Media, Multimedia & Design<br>-----<br>E: [EMAIL PROTECTED]<br>W: http://www.tactilemedia.com<br><br>_______________________________________________<br>use-revolution mailing list<br>[EMAIL PROTECTED]<br>http://lists.runrev.com/mailman/listinfo/use-revolution<br> _______________________________________________ Join Excite! - http://www.excite.com The most personalized portal on the Web! _______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
