Link to frame labels
I have a mainMovie clip that consist of different movie clips. Inside of my mainMovi I have another movie clip that is called "Menus" this where all my navigation is but the 开发者_运维知识库frame labels are inside the mainMovie.
Here is my code:
on (release) {
_level1.gotoAndPlay("nordic");
}
i also have tried:
on (release) {
_root.gotoAndPlay("nordic");
}
Please help.
on (release) {
_root.web1.gotoAndPlay("nordic");
}
I have to declare the root gave the main movie clip a instance name and voila!
精彩评论