Ultra lightweight Custom Cursor (MousePointer) Class AS3
Features:
- Simple Usage (import and reference the included SWC -file, add 4 lines of code, thats all – absolutly NO importing of asset libraries or something else required, all required code is included in the swc file)
 - All cursors are vectors, so they could be scaled loseless
 - Supports a boundingbox, if you want to define a special area for the custom cursor (outside the area, the normal mousepointer will be shown)
 - Inlcuding 22 different cursor types
 - Set or unset the DropShadow
 - Only 5KB including all cursors
 
Example of Usage:
var  cc:CustomCursor = new CustomCursor();
cc.init(this);
cc.cursor  = ‘lens’;
cc.show();
Like always: Have fun!