Flash Q
- Started
- Last post
- 6 Responses
- jevad
Is there a way to load an embedded MC on a timeline into a higher level than an swf movie that's been loaded before it?
- jevad0
nobody?
- UndoUndo0
swapDepths()?
- jpea0
what do you mean by embedded?
my_mc.loadMovie('mymovie.swf', this.getNextHighestDepth())
?
- jevad0
jpea - I have a 'next' button on my root timeline that gets covered up when I load movies onto the timeline..so I was wondering if there was a way to make the next button (which is actually a movie clip) appear ontop of the loaded movies....
- jpea0
i'm assuming that you're loading these swf's into levels, rather than a blank movie clip? if that's the case, instead of loading into levels (loadMovieNum(etc...), load em into a blank clip placed on the stage registration point and load em with blank_mc.loadMovie('mymovie.swf...
this way, you can have your next button on a layer above the blank clip that you're loading stuff into
- jevad0
ahhhh
right on!!
thanks1