have created a timeline using a "slider" in Flash. The buttons (years) on the timeline should link to frames outside the movie clip with information.
However, all the buttons default to just the last frame of information rather than the frame they should be going to...although each has a different instance name. Has anyone run across this problem before?
The following is my code:
main frame:
Function turnOff() {
_root.mcYellow.gotoAndStop("hidden"
;
_root.mcPurple.gotoAndStop("hidden"
;
_root.mcPink.gotoAndStop("hidden"
;
_root.mcOrange.gotoAndStop("hidden"
;
_root.mcRed.gotoAndStop("hidden"
;
}
stop();
One of the buttons (there are 16)
on (release) {
_parent.turnOff();
_parent.gotoAndStop("1808"
;
}
The swf is at
Thanks for any suggestions that anyone can give me!
However, all the buttons default to just the last frame of information rather than the frame they should be going to...although each has a different instance name. Has anyone run across this problem before?
The following is my code:
main frame:
Function turnOff() {
_root.mcYellow.gotoAndStop("hidden"
_root.mcPurple.gotoAndStop("hidden"
_root.mcPink.gotoAndStop("hidden"
_root.mcOrange.gotoAndStop("hidden"
_root.mcRed.gotoAndStop("hidden"
}
stop();
One of the buttons (there are 16)
on (release) {
_parent.turnOff();
_parent.gotoAndStop("1808"
}
The swf is at
Thanks for any suggestions that anyone can give me!