Load Movie
eharetea

Load movie in Flash.

Flash load movie.

Date Created:Friday December 29th, 2006 03:41 AM
Date Modified:Friday August 01st, 2008 12:24 PM

//load movie is good for buttons and stoping sounds etc.

on (release) {
 loadMovie("movie2.swf",1);
}

//levels are 0-99?
//if the same level is specified, then movie playing will not be viewed,
//unless placed on separete levels
//to load a movie in a different spot
//target is the instance name of a blank movie clip placed on its own layer in the main scene,
//which you place where you actually want the movie to load.
//make sure to select absolute.

on (release) {
 loadMovie("smile.swf",_root.target);
}

//this code works too-------->
on (release) {
 loadMovie("smile.swf","target");
}

//ANY modifications done to the movie clip "target" will happen to the movie