PDA

View Full Version : myMovieClip.gotoAndPlay("frame")


Sarebro
10-22-2003, 06:47 PM
thats the syntax i need....when i click a button on the main timeline, i want it to goto a certain frame in a certain movie clip and play. the exact syntax is

on (release) {
mainstage.gotoAndPlay("bio");
}

contains no errors....dunno what to do.

help?
please?
PLEASE?
hah....

thanx

farafiro
10-23-2003, 05:25 AM
if u r on MX 2004on (release) {
_root.mainstage.gotoAndPlay("bio");
}
//or
this.myBtnName.onRelease = function(){
mainstage.gotoAndPlay("bio");
}