Tooltip Fade effect : Fade Effect « Effects « Flex






Tooltip Fade effect

Tooltip Fade effect
     
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="600" height="600" initialize="app_init();">
    <mx:Script>
 
    import mx.managers.ToolTipManager;
    public function app_init():void {
 
        ToolTipManager.showEffect = fadeIn;
 
    }
  </mx:Script>
 
    <mx:Fade id="fadeIn" alphaFrom="0" alphaTo="1" duration="1000"/>
 
    <mx:Button id="b1" label="Click me" toolTip="This is a ToolTip."/>
</mx:Application>

   
    
    
    
    
  








Related examples in the same category

1.Using the AnimateProperty effect to fade a buttonUsing the AnimateProperty effect to fade a button
2.Using the Fade effect on the buttonUsing the Fade effect on the button
3.A fade effectA fade effect
4.Use Fade class to add effect to panelUse Fade class to add effect to panel
5.Apply the Fade effect to the Label control using the system font
6.Fade effectEnd eventFade effectEnd event
7.Fade effect for ButtonFade effect for Button
8.Combine Fade and Move effect into SequenceCombine Fade and Move effect into Sequence
9.Combine Fade, Pause and Move effect into SequenceCombine Fade, Pause and Move effect into Sequence
10.Add Fade and Move effect into ParallelAdd Fade and Move effect into Parallel
11.Fade Effects for adding item to TileFade Effects for adding item to Tile
12.Fade Button creationCompleteEffectFade Button creationCompleteEffect
13.Fly fade effectFly fade effect
14.Using Fade effect so that ToolTips fade in when the user moves the mouse pointer over a component with a ToolTipUsing Fade effect so that ToolTips fade in when the user moves the mouse pointer over a component with a ToolTip
15.Fade PropertiesFade Properties
16.Fade properties: alphaFrom, alphaTo, duration
17.Fade DurationFade Duration