actionscript 2 - Flash Animation Action Script 2.0 -


I'm experiencing problems with Flash animation, I am new to action scripting.

on (rollover) {

  goto endplete (2);   

}

Once with the mouse, start the animation and complete your loop and stop. And the mouse should be disabled on completing its loop (300 frames), if the mouse occurs then it should start from frame 2 again. A movie clip and movie clip is imported into a scene. I am using Action Script 2.0.

Thank you in advance

  (rollover) {if ( _currentframe & lt; 1 & amp; amp; _currentframe & gt; 300) {gotoAndPlay (2); }}   

As long as the current frame is less than 1, which means that it is 0, and at the same time, if the current frame is greater than 300, then only give it to GotoAndPlay (2); . It is assuming that your final frame of animation is at 301 - if it is not, and is at 300, then the _currentframe & gt; 300 to _currentframe & gt; 29 9

Comments

Popular posts from this blog

Pass DB Connection parameters to a Kettle a.k.a PDI table Input step dynamically from Excel -

multithreading - PhantomJS-Node in a for Loop -

c++ - MATLAB .m file to .mex file using Matlab Compiler -