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

Rollover2

Code Actionscript 2.0

Instanz-Aktion

onClipEvent (load) {
speed = 0;
}
onClipEvent (enterFrame) {
_rotation = _rotation + speed;
}
on (rollOver) {
speed = 3;
}
on (rollOut) {
speed = 0;
_rotation = 0;
}

Code Actionscript 3.0

addEventListener(Event.ENTER_FRAME, enterFrame); square.addEventListener(MouseEvent.ROLL_OVER, rollOver); square.addEventListener(MouseEvent.ROLL_OUT, rollOut); var speed= 0; function enterFrame(event:Event) { square.rotation = square.rotation + speed; } function rollOver(e:MouseEvent) { speed= 3; } function rollOut(e:MouseEvent) { speed= 0; square.rotation = 0; }

Infos

Beim Drüberrollen der Maus beginnt das Quadrat sich zu drehen. Wenn die Maus das Quadrat verlässt, wird es wieder auf den Anfangswinkel 0° zurückgesetzt, und die Drehung stoppt.

verwandt mit: Drehen

Download

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


Share