hi ima newbie here as well I was wondering if anyone knew how to link different scenes in a navigational menu? PLEASE help, I need to fix my menu since the links wont work. Thanks in advance
Lily
flash is a bit picky when it comes to scenes, use frame labels instead. =)
so if you want to play Scene 4 at frame 7, highlight the frame and give it a label in the properties panel. the script would be something like this:
on (release) {
_root.gotoAndPlay("yourFramelabel");
}
Thanks, im trying it out now.