<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Customizing a Flex ToolTip instance&#8217;s appearance using styles</title>
	<atom:link href="http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:26:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Nirav</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-9013</link>
		<dc:creator>Nirav</dc:creator>
		<pubDate>Wed, 02 Mar 2011 22:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-9013</guid>
		<description>Is there a way to remove the drop-shadow from the tooltip? I tried setting the dropShadowEnabled property to false as well as setting the shadowDistance to 0, but neither work.</description>
		<content:encoded><![CDATA[<p>Is there a way to remove the drop-shadow from the tooltip? I tried setting the dropShadowEnabled property to false as well as setting the shadowDistance to 0, but neither work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vitalik</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-7306</link>
		<dc:creator>Vitalik</dc:creator>
		<pubDate>Fri, 19 Mar 2010 17:45:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-7306</guid>
		<description>Hi i want to change toolTip style like borderThickness or border color in run time for concret tooltip... but there are some problem all border and background dissapear when i in toolTipShown event try to apply those styles... can you help me</description>
		<content:encoded><![CDATA[<p>Hi i want to change toolTip style like borderThickness or border color in run time for concret tooltip&#8230; but there are some problem all border and background dissapear when i in toolTipShown event try to apply those styles&#8230; can you help me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6541</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Mon, 07 Dec 2009 15:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6541</guid>
		<description>@Adrian,

These all work for me:
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot;
                creationComplete=&quot;init();&quot;&gt;
    
    &lt;mx:Style&gt;
        ToolTip {
            backgroundColor: black;
            backgroundAlpha: 1.0;
            cornerRadius: 0;
            color: white;
        }
    &lt;/mx:Style&gt;
    
    &lt;mx:Script&gt;
        &lt;![CDATA[
            private var btn2:Button;
            
            private function init():void {
                btn2 = new Button();
                btn2.label = &quot;AS button w/ AS toolTip&quot;;
                btn2.toolTip = &quot;Foo bar 2&quot;;
                addChild(btn2);
            }
        ]]&gt;
    &lt;/mx:Script&gt;
    
    &lt;mx:Button label=&quot;Roll over to see tool tip&quot;
               toolTip=&quot;The quick brown fox jumped over the lazy dog.&quot; /&gt;
    &lt;mx:Button id=&quot;btn&quot; label=&quot;MXML button w/ AS toolTip&quot; creationComplete=&quot;btn.toolTip = &#039;Foo bar&#039;;&quot; /&gt;
    
&lt;/mx:Application&gt;
&lt;/pre&gt;

Peter</description>
		<content:encoded><![CDATA[<p>@Adrian,</p>
<p>These all work for me:</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Application</span> xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span></span>
<span style="color: #000000;">                creationComplete=<span style="color: #ff0000;">&quot;init();&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Style</span><span style="color: #7400FF;">&gt;</span></span>
        ToolTip {
            backgroundColor: black;
            backgroundAlpha: 1.0;
            cornerRadius: 0;
            color: white;
        }
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Style</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #339933;">&lt;mx:Script&gt;</span>
<span style="color: #339933;">        &lt;![CDATA[</span>
<span style="color: #339933;">            private var btn2:Button;</span>
&nbsp;
<span style="color: #339933;">            private function init():void {</span>
<span style="color: #339933;">                btn2 = new Button();</span>
<span style="color: #339933;">                btn2.label = &quot;AS button w/ AS toolTip&quot;;</span>
<span style="color: #339933;">                btn2.toolTip = &quot;Foo bar 2&quot;;</span>
<span style="color: #339933;">                addChild(btn2);</span>
<span style="color: #339933;">            }</span>
<span style="color: #339933;">        ]]&gt;</span>
<span style="color: #339933;">    &lt;/mx:Script&gt;</span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Button</span> label=<span style="color: #ff0000;">&quot;Roll over to see tool tip&quot;</span></span>
<span style="color: #000000;">               toolTip=<span style="color: #ff0000;">&quot;The quick brown fox jumped over the lazy dog.&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Button</span> id=<span style="color: #ff0000;">&quot;btn&quot;</span> label=<span style="color: #ff0000;">&quot;MXML button w/ AS toolTip&quot;</span> creationComplete=<span style="color: #ff0000;">&quot;btn.toolTip = 'Foo bar';&quot;</span> <span style="color: #7400FF;">/&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adrian</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6538</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Mon, 07 Dec 2009 13:03:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6538</guid>
		<description>Your example styling doesn&#039;t work if you set tooltips programticaly.
Eg: 
myButton.toolTip = &quot;Here is my tooltip&quot;;
How do you use the Styles in this case? Any suggestion?
thanks</description>
		<content:encoded><![CDATA[<p>Your example styling doesn&#8217;t work if you set tooltips programticaly.<br />
Eg:<br />
myButton.toolTip = &#8220;Here is my tooltip&#8221;;<br />
How do you use the Styles in this case? Any suggestion?<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6480</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Fri, 27 Nov 2009 06:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6480</guid>
		<description>@Reny,

There is a Flex Exchange on Adobe.com which may have some free/commercial components: &lt;a href=&quot;http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&amp;exc=15&amp;loc=en_us&quot; rel=&quot;nofollow&quot;&gt;&quot;Adobe - Flex Exchange&quot;&lt;/a&gt;. Apart from that, you can try Google.com or ask on the FlexCoders mailing list.

Peter</description>
		<content:encoded><![CDATA[<p>@Reny,</p>
<p>There is a Flex Exchange on Adobe.com which may have some free/commercial components: <a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&#038;exc=15&#038;loc=en_us" rel="nofollow">&#8220;Adobe &#8211; Flex Exchange&#8221;</a>. Apart from that, you can try Google.com or ask on the FlexCoders mailing list.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reny</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6479</link>
		<dc:creator>Reny</dc:creator>
		<pubDate>Fri, 27 Nov 2009 04:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6479</guid>
		<description>Thanks Peter for your quick reply..i will try in that way...One more i thing, can you  suggest me any sites providing flex componets..i am looking for the css style mainly..
Reny</description>
		<content:encoded><![CDATA[<p>Thanks Peter for your quick reply..i will try in that way&#8230;One more i thing, can you  suggest me any sites providing flex componets..i am looking for the css style mainly..<br />
Reny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6470</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 26 Nov 2009 19:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6470</guid>
		<description>@Reny,

You could try one of these and see if they do what you need: &lt;a href=&quot;http://blog.flexexamples.com/2008/09/26/dynamically-styling-error-tips-in-flex/&quot; rel=&quot;nofollow&quot;&gt;&quot;Dynamically styling error tips in Flex&quot;&lt;/a&gt; and/or &lt;a href=&quot;http://blog.flexexamples.com/2008/05/22/changing-the-background-color-of-an-error-tip-in-flex/&quot; rel=&quot;nofollow&quot;&gt;&quot;Changing the background color of an error tip in Flex&quot;&lt;/a&gt;.

Peter</description>
		<content:encoded><![CDATA[<p>@Reny,</p>
<p>You could try one of these and see if they do what you need: <a href="http://blog.flexexamples.com/2008/09/26/dynamically-styling-error-tips-in-flex/" rel="nofollow">&#8220;Dynamically styling error tips in Flex&#8221;</a> and/or <a href="http://blog.flexexamples.com/2008/05/22/changing-the-background-color-of-an-error-tip-in-flex/" rel="nofollow">&#8220;Changing the background color of an error tip in Flex&#8221;</a>.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reny</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-6463</link>
		<dc:creator>Reny</dc:creator>
		<pubDate>Thu, 26 Nov 2009 10:02:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-6463</guid>
		<description>Hi,
  This helped me.But i would like to know how to set css for email validator&#039;s tooltip.
 Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
  This helped me.But i would like to know how to set css for email validator&#8217;s tooltip.<br />
 Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sci</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-4667</link>
		<dc:creator>sci</dc:creator>
		<pubDate>Tue, 21 Jul 2009 15:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-4667</guid>
		<description>neat stuff. How do I change the position of the tooltip? I&#039;m building some video player controls and I want the tool tip to sit above the main interface elements - pause/play etc. I really can&#039;t find how to do this. Any help would be really appreciated.</description>
		<content:encoded><![CDATA[<p>neat stuff. How do I change the position of the tooltip? I&#8217;m building some video player controls and I want the tool tip to sit above the main interface elements &#8211; pause/play etc. I really can&#8217;t find how to do this. Any help would be really appreciated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajay kumar</title>
		<link>http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/comment-page-1/#comment-925</link>
		<dc:creator>ajay kumar</dc:creator>
		<pubDate>Mon, 29 Dec 2008 22:08:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2007/09/01/customizing-a-flex-tooltip-instances-appearance-using-styles/#comment-925</guid>
		<description>Hi,
   This is good but i have need of to customize the background image of the tooltip.
    if anyone has idea about it then plese tell me.


    Thanks</description>
		<content:encoded><![CDATA[<p>Hi,<br />
   This is good but i have need of to customize the background image of the tooltip.<br />
    if anyone has idea about it then plese tell me.</p>
<p>    Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

