ok im creating an empty movie clip and drawing in it but i want it to show up behind the menu movie clip that is already on the stage. ive played arond with the depth value when creating it but im thinkin thats not what i need to do cause no matter what i put its always on top. can anyone help.
If your menu is one movieclip try something like this:
empty_mc.swapDepths(menu_mc.getDepth() - 1);
or
set the depth to that value when u create the movieclip.
awesome thanks man