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

Press

Code Actionscript 2.0

Instanz-Aktion

on (press) {
_alpha = 10;
}

Code Actionscript 3.0

addEventListener(MouseEvent.MOUSE_DOWN, press); function press(e:MouseEvent) { square.alpha = 0.1; }

Infos

Wenn die Maus auf das Quadrat klickt, wird seine Deckkraft alpha auf 10% gesetzt.

Download

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


Share