Flaah CS4, AS2
I am making an interactive tour. On the main timeline I have two movieclips: ABOUT and RENTALS.
I would like a button btnFLRcafe in the ABOUT movieclip to connect to RENTALS and start playing on the timeline at a frame named CAFE.
This is the code that I have on btnFLRcafe:
on(release){
_root.gotoAndStop("RENTALS");
_root.mcRENTALS.gotoAndPlay("CAFE");
}
When the button is pressed it navigates to RENTALS, but starts playing from the beginning of the timeline. It seems that the second part of the code is being ignored.
What am I doing wrong?