aribert888
Programmer
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!
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!