Changing Default Busy Cursor in Flex
Do the following during the initialization of the Flex Application to change the default busy cursor of the Flex Application to a cursor of your choice :
[ Embed(source="mybusycursor.gif") ]
public static const myBusyCursor : Class;
StyleManager.getStyleDeclaration("CursorManager").setStyle("busyCursor",myBusyCursor);
1 comment:
This is helpful info to further customize and make Flex sexy! ;)
Here's another way of implementing this using a CSS file and a cursor Class file.
http://laflash.org/node/606
Post a Comment