Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

attachMovie Problem

Status
Not open for further replies.

AtomicChip

Programmer
May 15, 2001
622
CA
I'm trying to use the attachMovie() method to load a scene and play it in the _root object. It's loading fine, but it is loaded into x = 0 and y = 0. So when I try to play it with the external player, the movie clip shows up partially off the stage.

How can I fix this?

-----------------------------------------------
"The night sky over the planet Krikkit is the least interesting sight in the entire universe."
-Hitch Hiker's Guide To The Galaxy
 
After you've attached it...

this.attached_mc1._x = 150;
this.attached_mc1._y = 200;

...Or whatever number suits you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top