On 6/30/06, Daniel Tuppeny <
[EMAIL PROTECTED]> wrote:
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: [email protected] [mailto: [email protected]] On
Behalf Of Ralf Bokelberg
Sent: 30 June 2006 14:21
To: [email protected]
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
__________________________________________________________
--
Jason __._,_.___
--
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
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___
- Re: [flexcoders] Faq: Migration to flex 2.0 final Pan Troglodytes
- RE: [flexcoders] Faq: Migration to flex 2.0 final Matt Horn
- RE: [flexcoders] Faq: Migration to flex 2.0 final Daniel Tuppeny
Reply via email to

