Goto then then goto

I am working from this tutorial

http://www.kirupa.com/developer/mx/full_site.htm

And on the buttons you use this code

on (release) {
	_root.contents.loadMovie("locations.swf");
}

But is there a way to make it play 10 frames before it goes to that .swf.

Example:
frame 1 has the button, you press that it plays 10 frames and on frame 11 it goes the .swf
(-:

on the 11 frame put a stop(), then a loadMovie() action

can you post the full code please:sure:

on the button:

play();

on frame 11:

stop();
loadMovie(“external_mc.swf”);

thanks

why you are posting do you know how to move minimized windows with a keyboard, i have dragged it off the screen:thumb:

*Originally posted by brian monkey *
**on the button:

play();

on frame 11:

stop();
loadMovie(“external_mc.swf”); **

it’s saying there is errors

on the button:

on(release){
play();
}

on frame 11:

stop();
loadMovie(“external_mc.swf”);