Hello,
I am designing a website including a flash movie and a dropdown menu. The flash movie is currently showing over the menu. How do I fix this?
Thanks.
Xibit Studio - 24 Aug 2007 11:17 GMT
well i dont really understand this, but ill try
your menu is on its own layer ??? ..put it above all your graphic elements dude ;o)
peace John
arcaluz - 30 Aug 2007 10:11 GMT
i remember that i was in the same problem and the easy solution is depth
for (var item:String in _root) {
var obj:Object = _root[item];
if (obj instanceof MovieClip) {
var objDepth:Number = obj.getDepth();
trace(obj._name + ":" + objDepth)
}
}
this way you can check the depth of the objects, i cant do any more, maybe in
the AS reference