asteenberge
03-07-2007, 07:34 PM
I am attempting to load several external swfs (one each time a user clicks a btn) using loadMovieNum. Even though i have used getNextHighestDepth, the new movie keeps replacing the previous image, rather than laying over top of it as a montage. This is killing me and I am out of ideas. How do i make it so that the new SWF just opens over the previous one???
- - - - - - - - - - - - - -
btnApple.onPress=function():Void {
loadMovieNum("photos/plant.swf", _global.getNextHighestDepth());
};
btnCone.onPress=function() {
loadMovieNum("photos/cone.swf", _Parent.getNextHighestDepth());
};
- - - - - - - - - - - - - -
Thanks for the help!
- - - - - - - - - - - - - -
btnApple.onPress=function():Void {
loadMovieNum("photos/plant.swf", _global.getNextHighestDepth());
};
btnCone.onPress=function() {
loadMovieNum("photos/cone.swf", _Parent.getNextHighestDepth());
};
- - - - - - - - - - - - - -
Thanks for the help!