I have a small problem Im trying to attach a mc multiple times.
On frame 1 I have :
attachMovie(“button”, “button1”, 0, {_x:240, _y:80, onPress:stopDrag, onRelease:stopDrag});
On frame 2 I have :
attachMovie(“button”, “button2”, 0, {_x:240, _y:120, onPress:stopDrag, onRelease:stopDrag});
The problem is that the attachment done in frame 1 dissapears as soon as the script on
frame 2 executes !
Anybody ?