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

Drehen

Code Actionscript 2.0

Instanz-Aktion

onClipEvent (load) {
this._rotation = 0;
}

onClipEvent (enterFrame) {
this._rotation = this._rotation + 2;
}

Code Actionscript 3.0

addEventListener(Event.ENTER_FRAME, enterFrame); function enterFrame(event:Event) { square.rotation = square.rotation + 2; }

Infos

Dieses Skript erhöht schrittweise den Rotationswinkel des Quadrats. Dadurch entsteht eine gleichmässige Drehung.

Download

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


Share