[flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread hworke
Hi, when I am trying to read a RSS link with one item node in it I do not get anything but when the RSS link has more then one item node all the nodes show up. Why can't I read when RSS has only one item? How do I solve this problem? here is how I am handling the the result event of the

Re: [flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread Wesley Acheson
I think its because it doesn't know if its an item or a collection try the following. If its not this I can't help. var f_Array:ArrayCollection = event.result.RDF.item as ArrayCollection; if (f_Array == null) { f_Array = new ArrayCollection([event.result.RDF.item]); }

Re: [flexcoders] Flex and NT Login

2009-08-15 Thread Wesley Acheson
I think this is LDAP authentication. If your using server technology look at what that sever supports http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetailsproductId=2postId=7122 On Fri, Aug 14, 2009 at 9:01 PM, ballofmagic ballofma...@yahoo.com wrote: Do you know how to

Re: [flexcoders] Event Best Practices

2009-08-15 Thread claudiu ursica
As long as the component are oon the display list and the event bubbles property is set to true you can listen for the event in the main app. However you can catch the event in every component nested in the main app which parents the component that dispatched the event... THT, C

Re: [flexcoders] Re: Event Best Practices

2009-08-15 Thread Magnus Lassi
I don't see the event mentioned, is it a custom event you created or an event in the framework? If it's a custom event, did you override the clone function? On Fri, Aug 14, 2009 at 3:15 PM, jdizowat jasonharr...@gmail.com wrote: Thanks for all the help. I have exactly what you said, Jake. A

[flexcoders] Spark DropDownList Items Tooltip

2009-08-15 Thread michaelisraelcaplan
Hi there, I'm trying to figure out how to add tool tips for a hovered list item in a spark dropdownlist. This guy posted how to accomplish this with combobox: http://raghuonflex.wordpress.com/2007/09/19/tooltips-for-combobox-items-or-list-items/ Any tips on doing the same thing with the

Re: [flexcoders] simple RSS reader can't read with one item

2009-08-15 Thread Vivian Richard
You solution works like MAGIC. Thanks a lot... On Sat, Aug 15, 2009 at 3:07 AM, Wesley Achesonwesley.ache...@gmail.com wrote: I think its because it doesn't know if its an item or a collection try the following.  If its not this I can't help.   var f_Array:ArrayCollection =

Re: [flexcoders] This mailing list vs the forum.

2009-08-15 Thread Jochem van Dieten
On Sat, Aug 15, 2009 at 12:54 AM, Matt Chotin wrote: You can assume that we have this as an issue on our private contract-based forums with them. I could assume that, but why should I? I have previously assumed that issues I reported to Adobe were escalated to Jive, based on feedback from Adobe

[flexcoders] Singletons and Modules - Application domain problem

2009-08-15 Thread Everson Alves
Hello guys, I'm facing a weird problem. I'm working with flex Modules that are tide mxml components . Using ModuleManager to load the modules. If I load using moduleInfo.load(ApplicationDomain.currentDomain) it loads fine but as I want to use the module as independent sub applications and they

[flexcoders] Html Title and Google rank

2009-08-15 Thread christophe_jacquelin
Hello, How to set the balise Title,Description, Keywords of the html file that launch the SWF, because it is automatically regenerated. How to have a good rank on Google with a Flex Application ? Thank you, Christopher,

Re: [flexcoders] Html Title and Google rank

2009-08-15 Thread Wesley Acheson
I probably woudn't use that file in production. You can easily copy out areas that you want. Google Rank I don't know. Get many incomming links. On Sat, Aug 15, 2009 at 10:04 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, How to set the balise Title,Description,

[flexcoders] Re: Java/Flex questions answered by James Ward

2009-08-15 Thread meteatamel
Are you using AMFChannel? AMFChannel uses NetConnection and NetConnection, by default, batches request that are close in a single POST. You can try to increase the time between requests or you can wait for a result/fault before sending the next request. If I remember correctly, HTTPChannel does

[flexcoders] Content area of a container.

2009-08-15 Thread Wesley Acheson
How do I find the content area of a container? For example a panel. This as far as I can tell is different to its height, width, explicitHeight, explicitWidth are all the height and width of the panel not of its content area.

Re: [flexcoders] Hierarchical Tree Data

2009-08-15 Thread Wesley Acheson
I usually do this at the server level. I collect all my data from the database and then I put it into objects. (I use java) Then I use Xstream to convert to XML if required. However usually I just use a remote object and bypass the XML stage. Regards, Wesley Acheson On Fri, Aug 14, 2009 at

[flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
I've got an object I pull from CF and point to a combobox. script [Bindable] private var acMessageList:ArrayCollection; /script ... mx:ComboBox x=10 y=38 dataProvider={acMessageList} labelField=vcMessageDesc id=selectedMSG editable=true /mx:ComboBox When I select an item

RE: [flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
Ok, the warning had nothing to do with this issue... for future posterity sake and documentation, I found this article that helped me correct the warning message. http://www.mail-archive.com/flexcoders@yahoogroups.com/msg48635.html Anyone know why the RichTextEditor isn't working? Thanks

RE: [flexcoders] Bindable object / combobox issue

2009-08-15 Thread Scott
NEVERMIND. I need some sleep... =/ There was a different entry method set up on the last two tabs that prevented it from appearing... different component. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Scott Sent:

[flexcoders] Controlling Datagrid with Keyboard : Tab and Spacebar

2009-08-15 Thread arpan srivastava
Hi All, I am struggling from a long time implementing tabbing in Datagrid in Flex 2. Is there any issue with controlling datagrid with keyboard? I have a datagrid with 5 columns: Radio Button Chekbox TextInput Label Label Label //i need both renderer and editor same rendererIsEditor = true;

[flexcoders] Re: Singletons and Modules - Application domain problem

2009-08-15 Thread Everson Alves
I tried removing the option to optimize the module but the problem persists. Any idea? On Sat, Aug 15, 2009 at 1:11 PM, Everson Alves jho...@eversonalves.com.brwrote: Hello guys, I'm facing a weird problem. I'm working with flex Modules that are tide mxml components . Using ModuleManager to

Re: [flexcoders] Hierarchical Tree Data

2009-08-15 Thread Baz
Hey Wesley, when does the hierarchy get setup? Do you use an orm that builds and nests all objects - then, I guess, send that entire strucutre off to flex through remote object (amf). What do you get in flex, a nested ArrayCollection of objects, with a nested ArrayCollection of objects,