tags:

views:

75

answers:

1

Hello

I load the swf movie to my flex application

<mx:Image id="preloader" x="0" y="0" width="100%" height="100%"  scaleContent="false"
      source="@Embed(source='/assets/swf/preloader_small.swf')"  
      horizontalAlign="center" verticalAlign="center"/>

It is the animated preloader. Please tell me how I can stop the preloader anymation (like colling stop() metod in the MovieClip). Without uploading the animation and etc

thanks a lot

best Vladimir

A: 
stop()

Anytime the playhead encounters a stop action on a frame, it will stop on that frame. You will then need actions to tell the playhead to move along to the next scene or frame. You can loop a scene by adding a goto action on the last frame that sends it back to the first frame.....

joe