私はAdobeEdgeでカスタムカーソルを作成しようとしていますが、あまり成功していません。誰かが私を助けてくれることを願っています。
これらは私が試したコードです。
var myCursor = new ball();// as linkage to be done in the library
Mouse.hide();
stage.addEventListener(MouseEvent.MOUSE_MOVE,follow);
function follow(evt:MouseEvent){ addChild(myCursor);
myCursor.x = mouseX;
myCursor.y = mouseY;
}
stage.addEventListener(Event.MOUSE_LEAVE,vanish);
function vanish(event:Event){ removeChild(myCursor);
}
と
.next:hover { cursor:url(img/right-pointer.png); }
と
stage.addEventListener(MouseEvent.MOUSE_MOVE, redrawCursor);
stage.addEventListener(Event.MOUSE_LEAVE, hideCursor);
Mouse.hide();
function redrawCursor (event:MouseEvent):void {
sikte.visible = true;
sikte.x = event.stageX;
sikte.y = event.stageY;
}
function hideCursor (event:Event):void { sikte.visible = false; }