ToolTip style using styleManager in Flex4


 

ToolTip style using styleManager in Flex4

In this example you can see how we can change the style of ToolTip.

In this example you can see how we can change the style of ToolTip.

ToolTip style using styleManager in Flex4:

In this example you can see how we can change the style of ToolTip. In this example we use a styleManager for change the style of ToolTip.

Example:

<?xml version="1.0" encoding="utf-8"?>

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"

xmlns:s="library://ns.adobe.com/flex/spark"

xmlns:mx="library://ns.adobe.com/flex/mx"

minWidth="955" minHeight="600"

creationComplete="tooltipStylemanager()">

<fx:Script>

<![CDATA[

private function tooltipStylemanager():void{

styleManager.getStyleDeclaration

("mx.controls.ToolTip").setStyle("textAlign","center");

styleManager.getStyleDeclaration

("mx.controls.ToolTip").setStyle("fontWeight","bold");

styleManager.getStyleDeclaration

("mx.controls.ToolTip").setStyle("fontFamily","Verdana");

styleManager.getStyleDeclaration

("mx.controls.ToolTip").setStyle("color","#FFFFFF");

styleManager.getStyleDeclaration

("mx.controls.ToolTip").setStyle("backgroundColor","#000000");

}

]]>

</fx:Script>

<s:Panel title="ToolTip Style using styleManager Example"

chromeColor="#555555/font>"

color="#CCCCCC"

width="253"

height="177">

<mx:ApplicationControlBar

horizontalAlign="center"

0

width="251">

<s:Label text="Take mouse on Button"

color="#000000"

1

fontFamily="Verdana"/>

</mx:ApplicationControlBar>

<s:Button id="button"

2

label="Tooltip"

toolTip="This is a Button &#13;and&#13; it's a ToolTip example"

x="17" y="44"/>

3

</s:Panel>

&</s:Application>

Output:

4

Running Application:

To view this page ensure that Adobe Flash Player version 10.0.0 or greater is installed.

Download this code

5

Ads