If you don't give a new movie clip a location, it will be located at the
upper left corner of the stage, at point 0,0. You just need to give the
new clip a new value for the _x and _y properties.
onLoad = function()
{
_root.createEmptyMovieClip("UI_mc", 1);
UI_mc._x = 300;
UI_mc._y = 400;
}
Set the _x and _y values as you like.
--
Rob
_______
Rob Dillon
Team Macromedia
http://www.ddg-designs.com
412-243-9119
http://www.macromedia.com/software/trial/
|