
Zitat von
pixelpaxel
hat jemand eine Idee wie ich das per as hinbekomme?
Ja habe ich 
und die Lösung willst du sicher auch wissen 
PHP-Code:
var gesch = 1.01;
var speed = 10
MovieClip.prototype.geschKeit = function() {
trace(this);
this.onEnterFrame = function() {
diffx = _root._xmouse - this._x
diffy = _root._ymouse - this._y
this._rotation = Math.tan(Math.PI/8)*diffx+diffy
};
};
MovieClip.prototype.dreHen = function(){
speed = speed * this._rotation
this.onEnterFrame = function(){
if(this._rotation != 0){
speed /= gesch
this._rotation = speed;
}else{
delete this.onEnterFrame;
}
}
}
prop_mc.onPress = function() {
this.geschKeit();
};
prop_mc.onRelease = prop_mc.onReleaseOutside = function(){
this.dreHen()
}
so und im Anhang findest du auch die passende Fla, viel Spaß