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

Maus Spiegeln

Code Actionscript 2.0

Instanz-Aktion cursor2

// always put cursor2 opposed to mouse position
onClipEvent (enterFrame) {
this._x = 400 - _root._xmouse;
this._y = _root._ymouse;
}

Instanz-Aktion maincursor

onClipEvent (load) {
startDrag(this, true);
Mouse.hide();
}

Code Actionscript 3.0

cursor2.addEventListener(Event.ENTER_FRAME, enterFrame); maincursor.startDrag(true); Mouse.hide(); function enterFrame(event:Event) { cursor2.x = 400 - mouseX; cursor2.y = mouseY; }

Infos

Der Mauszeiger wird horizontal gespiegelt. Dazu sind zwei Instanzen maincursor und cursor2 nötig. Der Befehl startDrag bewirkt, dass sich maincursor mit der (unsichtbaren) Maus mitbewegt. Die Position der Instanz cursor2 wird in jedem Durchgang aus der Position von maincursor berechnet.

Download

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


Share