Sergio
04-09-2001, 10:48 AM
Hi,
I'm facing a problem with MC.
If I take the exemple of the tutorial about duplication of MC (http://www.actionscripts.org/tutorials/beginner/DuplicateMovieClip/index.shtml) it works fine.
So I've tried to use the same code that would act when clicking on a MC and it's not working??? (no new MC is instanciated
onClipEvent (mouseDown) {
duplicateMovieClip ("box", "box3", 1);
setProperty ("box3", _x, "200");
}
I guess the MC is sending the command to itself so I've try the following:
onClipEvent (mouseDown) {
duplicateMovieClip (_root.box, "box3", 1);
setProperty ("box3", _x, "200");
}
This is not better.
Please, help.
I'm facing a problem with MC.
If I take the exemple of the tutorial about duplication of MC (http://www.actionscripts.org/tutorials/beginner/DuplicateMovieClip/index.shtml) it works fine.
So I've tried to use the same code that would act when clicking on a MC and it's not working??? (no new MC is instanciated
onClipEvent (mouseDown) {
duplicateMovieClip ("box", "box3", 1);
setProperty ("box3", _x, "200");
}
I guess the MC is sending the command to itself so I've try the following:
onClipEvent (mouseDown) {
duplicateMovieClip (_root.box, "box3", 1);
setProperty ("box3", _x, "200");
}
This is not better.
Please, help.