This is Interesting: Free Magazines for Graphics designers and webmasters
Home > Archive > Flash Site Design > April 2006 > Animation with 1frame
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Animation with 1frame
|
|
| Shoudibola 2006-04-25, 10:39 pm |
| 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
| |
|
| Shoudibola skrev:
> 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
>
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?
Ralph
| |
| ogousa 2006-04-27, 10:39 pm |
| use onEnterFrame:
myMovie.onEnterFrame = function()
{
// your code here will run FRAMES-PER-SECOND times each second
}
ogousa
http://maraboutime.com
|
|
|
| | Copyright 2003 - 2008 forum4designers.com Software forum Computer Hardware reviews |
|