I have a site that uses a lot of attachMovie commands and levels and for some weird reason I have this command
Code:
attachMovie("dp_logo", "dp_logo", 1008);
Which works fine, but then these commands
Code:
ZigoEngine.doTween(dp_logo, '_y', Stage.height-51, 0, "easeOutExpo");
ZigoEngine.doTween(dp_logo, '_x', Stage.width-85, 0, "easeOutExpo");
ZigoEngine.doTween(dp_logo, '_scale', 55, 0.2, "easeOutExpo");
ZigoEngine.doTween(dp_logo, '_alpha', 60, 0.2, "easeOutExpo");
Don't seem to do anything, the mc loads up its original size brightness and alpha and is stuck in the top left corner on the x=0, y=0 axis.

So when I eliminate the attachMovie command and just drop the mc on the stage on the top layer and assign simple coordinates it works great but the background is on a high layer depth and overlaps the mc.

Is there a way to keep the setup I have now with not attaching the mc but assign a layer to it so that it stays on the highest later like layer 1008?