Use custom cursor from png : Cursor « Components « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Components » CursorScreenshots 
Use custom cursor from png
Use custom cursor from png
      

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
                initialize="initializeHandler(event)">

  <mx:Script>
  

    import mx.managers.CursorManager;

    [Embed(source="logo.png")]
    private var customCursor:Class;

    private var cursorId:int;

    private function initializeHandler(event:Event):void {
      cursorId = CursorManager.setCursor(customCursor);
    }


  </mx:Script>

  <mx:Button label="Reset Cursor" click="CursorManager.removeCursor(cursorId)" />

</mx:Application>

   
    
    
    
    
    
  
Related examples in the same category
1.Create Cursor for arrayCreate Cursor for array
2.Load cursor from URLLoad cursor from URL
3.Using showBusyCursor property for SWFLoaderUsing showBusyCursor property for SWFLoader
4.Creating and removing a cursorCreating and removing a cursor
5.Use CursorManager to set and remove cursorUse CursorManager to set and remove cursor
6.Use default busy cursorUse default busy cursor
7.Install and uninstall busy cursorInstall and uninstall busy cursor
8.Create a default busy cursor at a higher priority levelCreate a default busy cursor at a higher priority level
9.Set and remove busy cursorSet and remove busy cursor
10.Remove cursor by idRemove cursor by id
11.Use CursorManager to load png file based cursorUse CursorManager to load png file based cursor
12.CursorManager DemoCursorManager Demo
13.Define Busy CursorDefine Busy Cursor
14.Show Busy Cursor by using ActionScriptShow Busy Cursor by using ActionScript
15.Show Busy Cursor for Image loading
ww___w___.___j___a_v__a___2s.__c_o___m_ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.