RE: [flexcoders] Using RSLs in an actionscript only project

2009-09-12 Thread Alex Harui
You can't externalize classes needed in the first frame. Make sure all the first frame does is load the RSL then switch to frame2. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yaho

RE: [flexcoders] Rich Text Editor and XML

2009-09-12 Thread Tracy Spratt
Does this: tr.color = "red"; work in general? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of stldvd Sent: Saturday, September 12, 2009 4:33 PM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] reading Xml excel files

2009-09-12 Thread Tracy Spratt
There is a default namespace in tht xml that will apply to those nodes. If you declare a default namespace in flex, you should be able to reference the nodes directly. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...

[flexcoders] Array.filter: how to pass dynamic parameters?

2009-09-12 Thread pepegabri
Hi, I've one Array of Objects: var obj1 ={a:10, b:"z", c:"jj"}; var obj2 = {a:10, b:"r", c:"hh"}; var obj3 = {a:14, b:"t", c:"jj"}; var ar:Array = new Array(obj1,obj2,obj3); If I want to get a new Array containing all the "records" where a=10 I call the filter method: ar.filter(myMeth)

[flexcoders] Cairngorm Parallel Commands

2009-09-12 Thread krusenet
I posted this on the adobe forums but this list appears much more active so I'll try here. I'm using Cairngorm and I am trying to execute a set of commands in parallel. One command doesn't depend on the completion of another so they don't fit the SequenceCommand idea. Basically I create two e

[flexcoders] Using RSLs in an actionscript only project

2009-09-12 Thread joshonemail
I have an Actionscript only project that I would like to use the textLayout framework in as an RSL. The application uses a daisy chain of frames, and on the first frame I successfully seem to download the swz from adobe (using the digest from the swc) and load it into the application domain. H

[flexcoders] Downloading nightly builds of the data visualization

2009-09-12 Thread cuttenv
I think it's safe to say that I am not the only one who has had issues with the data visualization components. It also seems like it has been very hard to download an updated version of the data visualization components. I know there in a version for 3.4 that was released but I am talking more a

[flexcoders] Rich Text Editor and XML

2009-09-12 Thread stldvd
Let me try rephrasing my earlier post and see if I can get a response: I've got a RTE called outRTE into which I'm loading XML. I need to act conditionally on the XML, so I've got to use a for-each-in loop to go through it. for each (var item:XML in xData.Content.P.*) { var textToColo