hello CyanBlue !
ok so what i have is a button called 'ButGetImage' .. this is inside of the movie clip called 'ThumbHolder' , that was loaded via 'attachMovie' .. When i click 'ButGetImage' it makes visible the 'image_mc' on the _root level.
--------
here is the code that loads in the 'attachMovie'..
-----------
var mc:MovieClip = this.ref.attachMovie("Thum
----
the snippent below is what calls the 'image_mc' .. << this is the movieclip that i need to appear on top of the
i have inserted the swapDetpths.. but apparently i did it wrong.. ;))
Main Topics
Browse All Topics





by: CyanBluePosted on 2009-10-29 at 12:00:08ID: 25696994
You could use swapDepths() call to swap them...
clip2.swapDepths(clip1);
CyanBlue