Hmm you pose an interesting question. I was simply going between the working copy that is working on my server (written in flex 2 and then updated with the beta 2 version of 3). I can go to the actual url call and see that the xml is being generated. I'm not sure quite how to debug 3 to see. I am not receiving any errors from flex at this point. Not sure how to get the degugger working.
--- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > I'm sure your code is the same and works great on Flex 2, but now that > you're hitting some problem we need to definitely determine where the > problem is. How did you confirm that you have data in the Flex 3 > version? If you really do have data, then the next step is to examine > the renderers, see how many are being created and how they behave. > > > > ________________________________ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of markcavins > Sent: Thursday, March 06, 2008 10:25 AM > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Re: Having an issue with flex 3 > > > > I do have data in it. I can take the working copy -- which ahs the > same exact code and it is working fine. But from flex 3 nothing appears. > > --- In flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> > , "Alex Harui" <aharui@> wrote: > > > > I can't think of any issues that should affect you. Make sure your > > dataProvider has items. > > > > > > > > ________________________________ > > > > From: flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> > [mailto:flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> > ] On > > Behalf Of markcavins > > Sent: Thursday, March 06, 2008 10:08 AM > > To: flexcoders@yahoogroups.com <mailto:flexcoders%40yahoogroups.com> > > Subject: [flexcoders] Having an issue with flex 3 > > > > > > > > I have recently upgraded to Flex 3 and an app that I wrote with the > > beta version of 3 that was working fine is not working with the > > release candidate. Most of the stuff has been cosmetic which I > > expected however a major issue is that the TileList info is not being > > displayed. > > > > Code > > > > <mx:HTTPService id="tempXML" resultFormat="e4x" > > result="onResult(event)" > > url="http://rbdev.mysite.net/info_wrapper.php?url=https:// > <http://rbdev.mysite.net/info_wrapper.php?url=https://> > > <http://rbdev.mysite.net/info_wrapper.php?url=https:// > <http://rbdev.mysite.net/info_wrapper.php?url=https://> > > > > {customer.text}.mysite.net/interface.php?action=showopen&operation=s > > > howassets&format=xml&opstatus=crit&username={username.text}& > > amp;password={password.text}" > > /> > > > > <mx:TileList dataProvider="{_xlcMyListData}" labelField="fleet" > > left="35" right="15" > > width="350" backgroundColor="#000000" color="#ff0000" fontSize="27" > > borderColor="#000000" columnWidth="315" rowHeight="50" > > themeColor="#808080" fontWeight="bold" allowMultipleSelection="true" > > id="TileList1" height="0" y="202" x="178"/> > > > > <mx:Script> > > <![CDATA[ > > //Setting the TileList display > > import mx.collections.XMLListCollection; > > > > [Bindable] > > private var _xlcMyListData:XMLListCollection; > > > > private function onResult(Event:ResultEvent):void { > > var xmlResult:XML = XML(Event.result); > > _xlcMyListData = new XMLListCollection(xmlResult..asset); > > } > > > > ]]> > > </mx:Script> > > > > As stated before the app was displaying the data before with both > > flex2 and the beta of flex 3. Is there something that I'm missing now? > > >