Skip to main content
Known Participant
November 4, 2009
Question

how to set gotoAndStop

  • November 4, 2009
  • 1 reply
  • 990 views

how to set gotoAndStop on 10 frame of my main stage ?

This topic has been closed for replies.

1 reply

Inspiring
November 4, 2009

MovieClip( this.root ).gotoAndStop( 10 ):

nepaliktoAuthor
Known Participant
November 4, 2009

I am in one of the libary. Now I need to go to root.

So, I wirte engLang.root.gotoAndStop(10); But it shows error

Call to a possibly undefined method gotoAndStop through a reference with static type flash.display.DisplayObject

Inspiring
November 4, 2009

MovieClip( this.root ).gotoAndStop( 10 ):

OR

MovieCli( engLang.root ).gotoAndStop(10);  // WHAT IS engLang? And you don't use this.root?