PDA

View Full Version : depth swapping



histwinsister
January 21st, 2004, 02:36 PM
is it possible to swap the depths of externally loaded movies? if so, what is the best way to do it?

thanks!

iceman
January 21st, 2004, 04:41 PM
Try this:

loadMovie("example.swf",first_mc);
loadMovie("tryingeasing.swf", second_mc);
changePlace = function(n){
this.swapDepths(n);
}
first_mc.changePlace(second_mc);
second_mc.changePlace(first_mc);


Kyle:p: