Set tooltip show delay with ToolTipManager : ToolTipManager « Components « Flex






Set tooltip show delay with ToolTipManager

Set tooltip show delay with ToolTipManager
      
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" initialize="initApp();">
    <mx:Script>
    
        import mx.managers.ToolTipManager;
    
        private function initApp():void {
            ToolTipManager.showDelay = 0;
        }
    
      </mx:Script>
    <mx:Button label="Click Me" toolTip="Click this Button to do the same thing"/>
</mx:Application>

   
    
    
    
    
    
  








Related examples in the same category

1.Enable tooltip with ToolTipManagerEnable tooltip with ToolTipManager
2.Set tooltip hide delay with ToolTipManagerSet tooltip hide delay with ToolTipManager
3.Change value of ToolTipManager.currentToolTip.text to a valueChange value of ToolTipManager.currentToolTip.text to a value
4.Create Tooltip with ToolTipManagerCreate Tooltip with ToolTipManager
5.Remove a tooltip with ToolTipManagerRemove a tooltip with ToolTipManager
6.Use ToolTipManager to create an error tipUse ToolTipManager to create an error tip
7.Set time that a tool tip is visible with ToolTipManagerSet time that a tool tip is visible with ToolTipManager
8.Use Application's initialize event to set the starting values for the ToolTipManagerUse Application's initialize event to set the starting values for the ToolTipManager