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

Wachsen

Code Actionscript 2.0

Instanz-Aktion

onClipEvent (enterFrame) {
_width = _width + 1;
_height = _height + 1;
}
on (rollOver) {
_width = 10;
_height = 10;
}

Code Actionscript 3.0

square.addEventListener(Event.ENTER_FRAME, enterFrame); square.addEventListener(MouseEvent.MOUSE_OVER, rollOver); function enterFrame(event:Event) { event.target.width = event.target.width + 1; event.target.height = event.target.height + 1; } function rollOver(e:MouseEvent) { e.target.width = 10; e.target.height = 10; }

Infos

Das Quadrat wächst solange, bis es von der Maus daran gehindert wird. Die Breite _width und die Höhe _height werden in jedem Durchgang um einen Pixel erhöht. Beim Drüberrollen werden sie auf 10 Pixel zurückgesetzt.

Download

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


Share