Hello,
I've got a chart with a lot of data points on it. When the mouse enters this
chart, a rollOver handler sets a crosshair cursor using
[Embed("/path/to/crosshairCursor.png")]
private var crosshairCursor:Class;
...
CursorManager.setCursor(crosshairCursor, CursorManagerPriority.HIGH);
Note that this solution was based on the example from:
http://help.adobe.com/en_US/flex/using/WS2db454920e96a9e51e63e3d11c0bf69084-7f25.html
The problem is the crosshair cursor produces a very noticeable mouse lag when
the user moves the mouse over the plot. If I use the default system cursor, the
is no lag.
Any ideas how to eliminate this lag? Seems to be related to the setCursor
function. I just want to change the cursor, keeping everything else the same. I
want to get the same performance as the default system cursor (e.g. pointer),
but it seems not possible using the official approach to set a custom cursor.