Ok... now I have a real prob... not just lack of sleep and looking over simple details. I want to open a movie inside a movie, but be able to position it wherever I please.

here's the script for one of my buttons : ( w/o positioning )

clip1.onRollOut = out;
clip1.onRollOver = over;
clip1.onPress = up;

function over(){
clip1.gotoAndPlay("goclip1");
}

function out(){
clip1.gotoAndPlay("endclip1");
}

function up(){
loadMovieNum ("about.swf",1);

I want this movie "about.swf" to open in a specific loction on the orig. movie.

Is there a way to position the movie on any part of the original movie?

Thanks,
Chris