HTML has the ability to set cursors using CSS.[1]

This includes built-in cursors as well as custom cursors which can be specified 
as image or animated files. It appears that .cur files have the best browser 
support.[2]

I’d like to create a CursorManager class or Mouse (cursor) class similar to the 
existing ones in Flash/Flex. Is there an accepted practice for dealing with 
these types of settings in FlexJS? It seems to me that the way to do it would 
be to add a class to the top-level application DOM element. Here’s one 
reference.[3]

(I’m obviously discussing the JS side. The SWF side could handle it the way 
it’s currently being handled using either Mouse.cursor or CursorManager.)

[1]https://developer.mozilla.org/en/docs/Web/CSS/cursor
[2]https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_User_Interface/Using_URL_values_for_the_cursor_property#Compatibility_with_other_browsers
[3]http://stackoverflow.com/questions/9681080/changing-cursor-to-waiting-in-javascript-jquery

Reply via email to