here is my code. it is on a movie clip which you can control to move left and right.
if (this._x<=0) {_root.gotoAndStop(3);}
im expecting that when the clip leaves the left side of the screen, the movie will jump to frame 3 of the current scene. but for some reason, it is jumping to the 3rd frame of the entire movie. so i tried this:
if (this._x<=0) {_root.gotoAndStop(“Scene 2”, 3);}
but this infact does absolutely nothing.
im confused. please help. its hurting my brain.