PDA

View Full Version : Loading Pictures


teamhonda22
12-13-2003, 06:54 PM
I'm trying to load a picture with the loadMovie function, but the picture isn't aligned where the its supposed to be(its not in the same spot as the movie). Can anyone help me.

dzy2566
12-13-2003, 07:40 PM
Try loading it into a movieClip, and then position the movieClip.//for instance
_root.createEmptyMovieClip("picHolder",1);
picHolder.loadMovie("myPic.jpg");
picHolder._x = 50;
picHolder._y = 200;