Thread
:
Preloader in AS3?
View Single Post
Nutrox
17 Creative Assets
2007-08-20 #
7
@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:
MovieClip
(
myLoader.
content
)
.
gotoAndStop
(
10
)
;
Where
myLoader
is your Loader object.
Nutrox
View Public Profile
Visit Nutrox's homepage!
Find all posts by Nutrox