NEU: Alle Visual Codes als Code Snippets für Flash CS5:
jetzt hier downloaden .

Maus rotation

Code Actionscript 2.0

Instanz-Aktion

onClipEvent (enterFrame) {
distance = _root._xmouse - this._x;
_rotation = _rotation + distance / 10;
}

Code Actionscript 3.0

addEventListener(Event.ENTER_FRAME, enterFrame); function enterFrame(event:Event) { var distance = mouseX - square.x; square.rotation = square.rotation +distance/10; }

Infos

Das Quadrat dreht sich mit einer Geschwindigkeit, die von der Distanz zur Maus abhängt.

verwandt mit: Drehknopf

Download

Right click: Flashfile AS 2.0 | Flashfile AS 3.0 | SWF-File


Share