ciao a tutti...
ho tot mc sul mio stage... nel primo frame inserisco:
mc.onPress = function(){
this.x = this._x;
this.y = this._y;
this.startDrag(false);
}
mc.onRelease = function(){
this._x = this.x;
this._y = this.y;
this.stopDrag();
}
mc1.onPress = function(){
this.x = this._x;
this.y = this._y;
this.startDrag(false);
}
mc1.onRelease = function(){
this._x = this.x;
this._y = this.y;
this.stopDrag();
}
e così via..........
ma ovviamente quando uno dei miei mc va sull'altro si blocca....
come posso ovviare al problema?
ciao ciao