Copy link to clipboard
Copied
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);
Copy link to clipboard
Copied
maybe you want the root to gotoAndPlay?
_level0.gotoAndPlay(3);
Copy link to clipboard
Copied
Thank you, it worked.
Copy link to clipboard
Copied
Glad it was what you needed
Find more inspiration, events, and resources on the new Adobe Community
Explore Now