This might be a case where the Flex 2 upgrade/migration forum on Adobe.com is better suited for the task. Just a suggestion.
matt horn flex docs > -----Original Message----- > From: [email protected] > [mailto:[EMAIL PROTECTED] On Behalf Of Pan Troglodytes > Sent: Friday, June 30, 2006 10:49 AM > To: [email protected] > Subject: Re: [flexcoders] Faq: Migration to flex 2.0 final > > Add it as a comment. That's what I've been doing when I've > noticed changes. > > > > On 6/30/06, Daniel Tuppeny < [EMAIL PROTECTED] > <mailto:[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:flexcoders%40yahoogroups.com> [mailto: > [email protected] <mailto:flexcoders%40yahoogroups.com> ] On > Behalf Of Ralf Bokelberg > Sent: 30 June 2006 14:21 > To: [email protected] > <mailto:flexcoders%40yahoogroups.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 > __________________________________________________________ > > > > > > > > > > -- > Jason > > > ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Groups gets a make over. See the new email design. http://us.click.yahoo.com/XISQkA/lOaOAA/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/

