Easy im sure

i have looked at the full site tutorial and i still dont understand. i want my home button (named homebutton) to load a movie. i can get the movie to load by itself but i am having trouble getting it to load when i click or onpress. so if someone could help me with the code that would be great. i am using

_root.createEmptyMovieClip(“emptyMC”, 2);
_root.emptyMC.loadMovie(“home.swf”);
_root.emptyMC._x = 100;
_root.emptyMC._y = 100;

to load the movie thanks for the help in advance.:moustache

Well to get it to load when a button is pressed, you need to put the script above in a button handler and apply it to the button.

So click on your button, open the actions panel and apply this to it:[AS]on (release) {
_root.createEmptyMovieClip(“emptyMC”, 2);
_root.emptyMC.loadMovie(“home.swf”);
_root.emptyMC._x = 100;
_root.emptyMC._y = 100;
}
[/AS]