Hello,
I am trying to duplicate this movieclip:
[AS]
this.createEmptyMovieClip(‘kader1’, 0);
with (_root.kader1) {
lineStyle(0.1, 0x000000, 100);
_x = 10;
_y = 189;
beginFill(0xFFFFFF);
lineTo(175, 0);
lineTo(175, 530);
lineTo(0, 530);
endFill();
}[/AS]
with something like:
[AS]
duplicateMovieClip(kader1, kader2, 1);
[/AS]
I would like to make kader2 the same as kader1, but with a different _x postion:
[AS]
kader2._x = 195;
[/AS]
How should I do this? Is it possible to duplicate an EmptyMovieClip?
thank you,
Jerryj.