Create and Position?

I’ve searched and couldn’t find my answer…simple problem so i’m sorry if i missed it in the search results…

I want to create an empty movie clip, position that empty movie clip to x:339 and y:66, then load logo.png into that empty MC.

Here is my code:


_root.createEmptyMovieClip("img_mc", 999);
_root.img_mc._x = 339;
_root.img_mc._y = 66;
_root.img_mc.loadClip("stupid_deal.png", img_mc);

Any idea why that’s not working? Not sure what I’m doing wrong…

THANKS EVERYBODY!