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

Schalter

Code Actionscript 2.0

Instanz-Aktion

on (press) {
// if invisible -> show
// and vice versa
if (_alpha == 0) {
_alpha = 100;
} else {
_alpha = 0;
}
}

Code Actionscript 3.0

square.addEventListener(MouseEvent.MOUSE_DOWN, press); function press(e:MouseEvent) { // if invisible -> show // and vice versa if (square.alpha == 0) { square.alpha = 1; } else { square.alpha = 0; } }

Infos

Das Quadrat wird beim Mausklick abwechslungsweise sichtbar und unsichtbar.

verwandt mit: Dropdown Menu

Download

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


Share