all groups > flash actionscript > january 2005 >
You're in the

flash actionscript

group:

Navigation question


Navigation question doublezero
1/16/2005 9:24:39 PM
flash actionscript:
I have a button within an mc on the root. When the user clicks the button, the
root has to move to a specific frame label but also when it gets there, there's
an mc on the root which also has to move to a specific frame label
(pre-determined by the button). Does anyone know how to do this? thanks...
Re: Navigation question kglad
1/16/2005 10:15:54 PM
yourMC.yourBtn.onPress=function(){
_root.gotoAndPlay("yourLabel");
_root.anotherMC.gotoAndPlay("MC_frameLabel"); // _root.anotherMC will need to
be instantiated when this button is pressed and will need to be on-stage in
"yourLabel"
}
Re: Navigation question doublezero
1/16/2005 11:08:01 PM
Re: Navigation question kglad
1/17/2005 4:26:03 AM
AddThis Social Bookmark Button