Attaching a movie

hello, i’m a begginer in flash and would like to know how to attach a movie clip like that “grass fiel” thing into a regular 800x600 page and placing wherever you want. please help me out with it. thank you!

create empty movie clip or any movie clip which will become a placeholder for your movieclip. if you attach movieclip from library, use attachMovie() else if you load external movie, use loadMovie();

for example, you have your movie in your library. you have a empty movie clip called “holder_MC” and place it where ever you want your movie should be attached. then use actionscript to attach movie like;

holder_MC.attachMovie(“linkageName”,“newName”,1);
last number ‘1’ is the depth of the new movie.

if you load movie from somewere else, then

holder_MC.loadMovie(“url”);

url is your external movies’ location.
you can also create empty movie clip using action script. If you have any question on this post, just send private message to me. I had hard time learning this kinda stuff so I want to help people having same difficulty.

Is this the same method used when you want to put something (mc) into a scrollpane component?I am having a lot of trouble doing this . . .