My button won't leave the stage.
I'm programming in AS2.0 using Flash MX2004
I attach the button "again" to the stage and its release function is gameOn where I remove the movie clip.
For some reason, It won't leave the stage...
I've tried to look at everything but maybe I'm missing something.
any help would be greatly appreciated.
I'm programming in AS2.0 using Flash MX2004
I attach the button "again" to the stage and its release function is gameOn where I remove the movie clip.
For some reason, It won't leave the stage...
I've tried to look at everything but maybe I'm missing something.
any help would be greatly appreciated.
Code:
function gameOn()
{
again.removeMovieClip();
}
function gameOver()
{
attachMovie("again", "again", 201);
again._xscale = 120;
again._yscale = 60;
again._x = 280;
again._y = 300;
again.onRelease = gameOn;
}
Comment