exactly i want as follow
in the main scene i will drag a blank movie clip
this movie clip will loadmovie a movie with defferent width and hight
for examble
the index movie 800600
the movie to be loaded is 500300
is that possible
if it is can you please add the code
Create a empty movie clip and give it an intance name of “container_mc” (no quotes). Now im assuming you want the external swf to be centered onstage. If so, place the container_mc on center of stage. Now place this code on main timeline:[AS]container_mc.loadMovie(“yourmovie.swf”);
_root.onEnterFrame = function() {
if (container_mc._width>0) {
delete this.onEnterFrame;
container_mc._x -= container_mc._width/2;
container_mc._y -= container_mc._height/2;
}
};[/AS]