Answered
Actionscript2.0, gotoandplay does not work
In my actionscript code gotoandplay is not working. I want to play another frame when my object touches wall101.
if (hitTest(_level0.wall101)==true)
{
gotoAndPlay(3);
}
In my actionscript code gotoandplay is not working. I want to play another frame when my object touches wall101.
if (hitTest(_level0.wall101)==true)
{
gotoAndPlay(3);
}
maybe you want the root to gotoAndPlay?
_level0.gotoAndPlay(3);
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.