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

Ein- und Ausblenden

Code Actionscript 2.0

Instanz-Aktion

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

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

Code Actionscript 3.0

addEventListener(Event.ENTER_FRAME, enterFrame); square.alpha = 0; function enterFrame(event:Event){ square.alpha = square.alpha+0.01 ; }

Infos

Dieses Skript erhöht schrittweise die Deckkraft alpha des Quadrats. Dadurch wird es gleichmässig eingeblendet.

Download

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


Share