Check it:
 
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"
 initialize="initCracka();">
 
<mx:Script>
<![CDATA[
 
 public var a:Array;
 
 function initCracka()
 {
  a = ["uno", "dos", "tres"];
 }
 
]]>
</mx:Script>
 <mx:Canvas width="100%" height="100%">
   <mx:Label text="Roll Over This" toolTip="{a[2]}" />
 </mx:Canvas>
</mx:Application>
 
----- Original Message -----
Sent: Tuesday, July 26, 2005 4:06 PM
Subject: [flexcoders] Question about tooltip text

Is it possible to have an array of items and have each item get a different tooltip text

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




YAHOO! GROUPS LINKS




Reply via email to