[font=Century Gothic]Now I am trying to center an image/movieClip. Below is how I get everything going[/font]
var k = _root.createEmptyMovieClip("stage", 50);
k._x = 400;
k._y = 300;
var p = k.createEmptyMovieClip("bigImage", 0);
p.loadMovie("lowres/"+imageList[0]);
trace(k._width); //Returns 0
trace(p._width); //Returns 0
trace(stage._width); //Returns 0
trace(_root.stage._width); //Returns 0
trace(k.bigImage._width); //Returns 0
[font=Century Gothic]How do I get the right width?[/font]
[font=Century Gothic]Someday I will learn? :-/ [/font]
[font=Century Gothic]Thanks,[/font]
[font=Century Gothic]Dan[/font]