Question about attachMovie

I’ve learned how to put Movie Clips on my stage using the attachMovie command, but they always appear in the upper left corner of the screen. How can I get them to appear in a predetermined area of the stage, without having to edit the Movie Clip itself??

mike,\r\rattachMovie will return a reference to the newly attached clip:

 \r\rmc = _root.attachMovie("sqr","sqr1",1);\r\rmc._x = 300;\r\rmc._y = 300;

\rthat should do what you’re looking for.