Flash Resources

flash components for sale
http://www.
flashden.net

free flash movies and tutorials
http://www.
flashkit.com

lots of free templates
http://www.flashmo.com

Useful Flash Blog – Lots of good advice and tips
http://www.flashguru.co.uk/blog/

free flash templates
http://www.flashvillage.com

loop a flash movie (AS2)

Create a new layer in your flash file, name it Actionscript. On the first frame of the movie on the actionscript layer, insert this :

_global.z = 0;

Now, move the rest of your movie layers (not actionscript layer) so that there is nothing else on frame 1 besides the actionscript layer.

Now, make a new keyframe one frame after the last frame of your movie on the actionscript layer. Insert this code :

if (_global.z == 3)
{
stop();
}
else
{
_global.z = _global.z + 1;
gotoAndPlay(2);
}

You can change 3 to be however many times you want the movie to loop. That’s all.

setTimeout Function – you don’t always have to use setInterval

http://www.flashguru.co.uk/blog/flash-8-settimeout


One Response to “Flash Resources”

  1. admin says:

    Yes absolutely!!

Leave a Reply