Home | Flash AS3 Tutorials | Flash Animation Tutorials | Store

Flying Fly Flash Animation - Rest with Wings Stop

This is the final fly flying flash animation tutorial of this series. With the use of stop() method, we can control the animation easily.

Please update flash player to view this Flash ActionScript tutorial!

Fly Flying Flash Animation Tutorial Content

In this flash animation tutorial, we also learn how to use the stop(); method. We order the fly to stop all animation when it flying and land to the right.

Fly Animation Flash Movie Details

In this flash animation, we add the following two lines of ActionScript codes on the last frame:

stop();
fly_mc.stop();

I think you should know how the stop() method vwey well now:

- The first line of Actionscript stops the motion tween animation. Therefore the fly will not repeat the animation.

- The second line of Actionscript stops the animation of the wings.

Download Flash Source File:

Flash Source File fly-flying-4.fla

Remarks:

This Flash Animation tutorial shows how to animate a fly flying with the use of stop() actionscript method on the last frame.