View Single Post
Nutrox's Avatar Nutrox Nutrox is online now Super Moderator 17 Creative Assets 2007-08-20 #7 Old  
@cmoore

Levels no longer exist in AS3, instead everything is displayed and arranged in display lists. You should take a look at the DisplayObjectContainer class (or the Sprite or MovieClip class) because it contains the functions you will need such as addChild() removeChild() getChildIndex() swapChildren() and so on.


@geo_speed

You need to access the loaded SWF file via the Loader.content property, so once the external SWF file has loaded you could then do something like this:

ActionScript Code:
  1. MovieClip(myLoader.content).gotoAndStop( 10 );
Where myLoader is your Loader object.
Reply With Quote