View Full Version : how can i get a link to a frame
ACtionsplash
11-13-2001, 11:50 AM
i want to be able to click on a link for example a piece of text,
and i want it to goto and play a certain frame, how would i do this???
mad_A
11-13-2001, 12:45 PM
The easiest way is to stick the text in a button (you don't need to have any graphic, so it does not need to look like a button). Then use either
on(release){
tellTarget("othermovie"){
gotoAndStop("some frame");
}
}
or
on (release){
_root.othermovie.gotoAndStop("some frame");
}
for both replace "some frame" with the label of the frame to go to, or remove the inverted commas and put the frame number.
Also replace othermovie with the instance name of the movie you want to go to, or if it is the parent movie leave it out altogether.
all the best
|
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.