[SIZE=2][FONT=Verdana]Hi guys,
I’ve been going through the Transitions Between External SWF tutorials and all is going well except I wish to situate my buttons in a movieclip and not on the main timeline as the tutorial teaches. [/FONT]
[/SIZE][FONT=Verdana][SIZE=2][SIZE=2]The tutorial does point out; ‘If your buttons are not located on the main timeline, you will have to change the path to the container movieclip. If your buttons are not on the main timeline, you must change container to the appropriate path.’
Does anyone know how I’d do that to the below code? (for some reason the code tags were messing up so I’ve just copy and pasted.)
[/SIZE][/SIZE][/FONT]on (release) {
if (_root.currMovie == undefined) {
_root.currMovie = “main”;
container.loadMovie(“main.swf”);
} else if (_root.currMovie != “main”) {
if (container._currentframe >= container.midframe) {
_root.currMovie = “main”;
container.play();
}
}
}
If anyone can point out what I need to alter - THANK YOU in advance!