all groups > macromedia flash sitedesign > april 2006 >
You're in the

macromedia flash sitedesign

group:

Animation with 1frame


Animation with 1frame Shoudibola
4/25/2006 11:19:08 PM
macromedia flash sitedesign:
Okay, I know that it sounds silly, but I need only one frame to make my
animation that contains only one frame. The animation will be controlled
throught Action Script. The problem is that I can't run the animation more than
one time. It loads the animation, but as soon as the frame ends, the animation
stops.

How do I do to make an infinite loop for 1frame only?

See ya!

Augusto
Re: Animation with 1frame Ralph
4/26/2006 12:00:00 AM
Shoudibola skrev:
[quoted text, click to view]

It must be a matter of programming only.

a=1;
do {
your statements....
} while (a=1);

is looping forever...

But do you really want that?

Re: Animation with 1frame ogousa
4/27/2006 7:21:03 PM
use onEnterFrame:

myMovie.onEnterFrame = function()
{
// your code here will run FRAMES-PER-SECOND times each second
}

ogousa
AddThis Social Bookmark Button