Every tut I’ve read always uses loadMovie with a button with an on(Press) handler.
///for instance
but.onPress = function () {
_root.createEmptyMovieClip(“container”, 1);
loadMovie(“loaded.swf”, “container”);
container._x = 150 ;
container._y = 20 ;
}
How do I load a movie without a button press? (For example, when the root timeline reaches a specific frame)