Position loaded movie

…has this been asked before…:wink:

is this possible?

menu_holder.loadMovie("menu.swf");


menu_holder._x = Math.round((Stage.width/2)-(menu_holder._width/2));
menu_holder._y = Math.round((Stage.height/2)-(menu_holder._height/2));
//
//------------------------------------------- Tell it that when ever the borwser is resized to move this box so that it stays in the same spot.
menu_holder.onResize = function() {
	menu_holder._x = Math.round((Stage.width/2)-(menu_holder._width/2));
	menu_holder._y = Math.round((Stage.height/2)-(menu_holder._height/2));
};
Stage.addListener(box2);
menu_holder.onResize();


thx,
m.