Der Maus Folgen

DelphiDel

Mitglied
g^^

Hi, ich versuche ein Script Hinzubekommen dass wenn ich auf ein Movieclip clicke dass es der Maus folgt bis ich loslasse und dann dort stehen bleibt.

Hier mein Script, funktioniert aber nicht wirklich.

Code:
on(press) {
	this.onEnterFrame = function() {
	_level0.thron._x = _xmouse;
	_level0.thron._y = _ymouse;
	}
}
 
Oder so:
PHP:
drag.onPress = function() {
	this.onEnterFrame = function() {
	this._x = _xmouse;
	this._y = _ymouse;
	}
}
drag.onRelease = function(){
	delete this.onEnterFrame
}
 
Zurück