Why wont the stop() actionscript command work in my flash movie?

  • Thread starter Thread starter Tian1984
  • Start date Start date
T

Tian1984

Guest
Ive designed a flash movie thats really simple. Its just a .jpeg that zooms in and fades out. However, after the fade out I want it to stop. Instead, it just repeats and starts zooming in again.

I've added the stop() actionscript to the 'actions' panel at frame 200, which is where the image fades out, but it doesn't stop at all. It just keeps looping.

Am I doing anything wrong? Can somebody please help me coz its driving me crazy!
 
Like said before you must have a ; at the end of the stop.

Example

In frame 200

stop;

I personally like to have it goto the root. So it would be

_root.stop;

which stops everything.
 
Back
Top