Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Actionscript2.0, gotoandplay does not work

New Here ,
Jan 02, 2014 Jan 02, 2014

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);
}

TOPICS
ActionScript
675
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Jan 02, 2014 Jan 02, 2014

maybe you want the root to gotoAndPlay?

_level0.gotoAndPlay(3);

Translate
Enthusiast ,
Jan 02, 2014 Jan 02, 2014

maybe you want the root to gotoAndPlay?

_level0.gotoAndPlay(3);

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 02, 2014 Jan 02, 2014

Thank you, it worked.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Jan 02, 2014 Jan 02, 2014
LATEST

Glad it was what you needed

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines