Need to delete a movieclip off of the stage. It’s messing with my button focus.
Setting it to invisible isn’t helping.
Need to delete a movieclip off of the stage. It’s messing with my button focus.
Setting it to invisible isn’t helping.
How are you setting it to invisible?
Are you using _alpha = 0? If so that will not work. _visible = 0 should work though because it makes it as though the clip doesn’t exist on the stage.
If you must delete it… the clip must exist on a removeable depth so you can use removeMovieClip()… so you will need to do something like…
myClip.swapDepths(10000);
myClip.removeMovieClip();
:: Copyright KIRUPA 2024 //--