They're supposed to all be listed here:

http://weblogs.macromedia.com/flexteam/archives/2006/06/flex_2_changes.c
fm

But since I don't see a mention of dataTip there, I've added details
below.


-----Original Message-----
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ralf Bokelberg
Sent: 30 June 2006 14:21
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Faq: Migration to flex 2.0 final

Let's start a faq for the migration to flex final. This will spare us a
lot of time for searching.
If you come across things one has to change, to make an app run in
final, post it here.

1. Model now ignores the root of a xml source <mx:Model id="testModel"
source="test.xml"/> <mx:ComboBox dataProvider="{testModel.data}" />

test.xml looks like
<root>
   <data>entry</data>
   <data>entry</data>
   <data>entry</data>
</root>


2. dataTip functions are now passed a HitData object, not an
ChartItemEvent object, so you must do:

// DataTip function
public function employeeDataTip(e:HitData):String
{
        return "<b>Name:</b> " + e.item.Name;
}

______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
______________________________________________________________________


------------------------ Yahoo! Groups Sponsor --------------------~--> 
Check out the new improvements in Yahoo! Groups email.
http://us.click.yahoo.com/6pRQfA/fOaOAA/yQLSAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
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

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to