Reputation: 647
I am using cursor manager to set the hand cursor for the overlay.
its works fine in mozilla firefox and IE8, but in chrome its shows the hand cursor and also the normal mouse pointer, here is my code
import mx.managers.CursorManager;
import mx.managers.CursorManagerPriority;
[Embed(source="/assets/images/cursor_hand.gif")]
public var handCursor:Class;
renderer.addEventListener(MouseEvent.MOUSE_OVER, function(event:MouseEvent):void{
CursorManager.setCursor(handCursor,CursorManagerPriority.HIGH, 3, 2);
});
renderer.addEventListener(MouseEvent.MOUSE_OUT, function(event:MouseEvent):void{
CursorManager.removeAllCursors();
});
Am I missed anything here? I am using flex builder 3 and Flash player 9.
Upvotes: 0
Views: 175