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

Wachsen

Code Actionscript 2.0

Instanz-Aktion

onClipEvent (load) {
this._width = 1;
this._height = 1;
}

onClipEvent (enterFrame) {
this._width = this._width + 1;
this._height = this._height + 1;
}

Code Actionscript 3.0

addEventListener(Event.ENTER_FRAME, enterFrame); square.width = 1; square.height = 1; function enterFrame(event:Event){ square.width = square.width + 1; square.height = square.height + 1; }

Infos

Dieses Skript erhöht schrittweise die Breite und die Höhe des Quadrats. Dadurch wächst es gleichmässig.

Download

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


Share