Hi hoping someone can help me with this.
What I’m trying to do is to load a swf, and access a particular scene within that movie. But it seems to have problems getting to that scene (a scene named ‘Title’).
I have this code on the timeline, and the button has an instance name ‘button3’.
button3.onRelease = function() {
loadMovie(“03_diagrams.swf”, 1);
gotoAndPlay(“Title”, 1);
}
Does this code look okay?