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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to direct a movieclip into another movieclip? 1

Status
Not open for further replies.

aribert888

Programmer
Jan 12, 2003
11
DE
On stage there are two movieclips (mcA and mcB)

In mcA I have a button. On release I would like to place movieclip C in mcB. How can I do it?

With my current script I only manage that mcC opens on stage.

on(release){
_root.attachMovie('movieclipC','mcC',1);
_root.mcC._x=500
_root.mcC._y=100
}

Thanks for helping!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top