all groups > flash actionscript > november 2004 >
You're in the

flash actionscript

group:

Actionscripting A Site



Actionscripting A Site Mikeb88_69
11/13/2004 9:12:25 PM
flash actionscript: Ok I have a button that is inside a movie clip which is inside a movie clip
which is inside a scene called 'main'. When it is clicked on I want it to go to
frame 3 of the next scene which is called 'mybrokenego'. So I would think that
all it would take is a simple: on (release) { gotoAndStop('mybrokenego',3); }
....But it doesnt work. Is it becuase it is inside all of these movie clips? How
can I make this work?
Re: Actionscripting A Site proxmaster
11/13/2004 9:54:30 PM
try changing your code to this:

_root.gotoAndStop("mybrokenego",3);
or
_parent._parent.gotoAndStop("mybrokenego",3);

Re: Actionscripting A Site DenisBB
11/14/2004 1:13:04 PM
try this

on (release) {
this.gotoAndStop('mybrokenego',3);
}

--
DenisBB,
DBB crew.

AddThis Social Bookmark Button