Hi there!
is it possible to change the target level of a MovieClip?
So I have two instances of the same MovieClip, both on level0 .
ActionButton(btn1);
ActionButton(btn2);
function ActionButton(button:MovieClip):Void
{
button.onRelease = function
{
----------------can this button Move to Level 1??--------HOW??---------------
_level0._visible = false;
}
}
-------Basically, now btn2 will disappear, and btn1 will remain visable-------
Can anyone Help me with the code that I dont know
???
Thanks…!