Chi mi sa dire perchè questo script con actionscript1 va e col 2 no ?
codice:
var speed = 4;
ball_mc.moveToMouse = function() {
	this._x += (this.targetX-this._x)/this._parent.speed;
	this._y += (this.targetY-this._y)/this._parent.speed;
	this.duplicateMovieClip("dupe"+this._parent.depth, this._parent.depth++);
};
ball_mc.onMouseDown = function() {
	this.targetX = this._parent._xmouse;
	this.targetY = this._parent._ymouse;
	this.onEnterFrame = this.moveToMouse;
};