[flexcoders] Resources to Flex Application Architecture articles?

2007-02-07 Thread Private Romeo
Hi everybody, we are looking for (online) resources related to how to best structure (larger) Flex applications. Most of the great training and tutorial material available tends to focus on how to construct more complex controls, how to implement special effects or how to solve

RE: [flexcoders] Resources to Flex Application Architecture articles?

2007-02-08 Thread Private Romeo
a while but man is it useful and easy. Dimitrios Gianninas Optimal Payments Inc. -Original Message- From: flexcoders@yahoogroups.com on behalf of Private Romeo Sent: Wed 2/7/2007 9:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Resources to Flex Application Architecture

[flexcoders] Charting Tooltips do not show ColumnSeries name

2007-02-19 Thread Private Romeo
I have the following simple charting app: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute styleName=plain mx:Script ![CDATA[ [Bindable]

[flexcoders] Accessing a Flex Model via JavaScript (FABridge)

2007-02-19 Thread Private Romeo
I've got the following model in my MXML app (bound to a column chart control): mx:Model id=sampleData items item MonthJanuary/Month Sales1000/Sales People3/People /item item

[flexcoders] Question regarding Array creation from XML

2007-02-19 Thread Private Romeo
Assume I've got the following String variable: var dummyXml:String = itemsitemMonthJanuary/MonthSales1200/SalesPeople5/People/i temitemMonthFebruary/MonthSales1000/SalesPeople3/People/item /items; What is the easiest way to turn it into an Array/ArrayCollection? attachment:

[flexcoders] Passing data between JavaScript and Flex apps via FABridge (Question!)

2007-02-19 Thread Private Romeo
I am trying to build a simple sample which shows how (xml) data gets passed via JavaScript to a Flex application where it is bound to a Flex Charting control. However, I am stuck at the data passing part. Here is the simple Flex Charting MXML Application: ?xml version=1.0 encoding=utf-8?

RE: [flexcoders] Accessing a Flex Model via JavaScript (FABridge)

2007-02-19 Thread Private Romeo
(with parameters) from your javascript. 3) use a strongly typed class based model rather than the generic model tag. Ely. _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Private Romeo Sent: Monday, February 19, 2007 7:17 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
I have a SolidColor fill for a ColumnSeries object: mx:ColumnSeries displayName=Staff yField=People id=peopleCol mx:fill mx:SolidColor id=peopleColColor color={_peopleColColor} / /mx:fill /mx:ColumnSeries In an ActionScript function I'd

RE: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
, 20. Februar 2007 00:03 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to programmatically change fill color (Flex Charting) Hey, peopleCol.setStyle(fill, new SolidColor(_peopleColColor, 1)); Brendan On 2/19/07, Private Romeo [EMAIL PROTECTED] wrote: I have a SolidColor fill

RE: [flexcoders] How to programmatically change fill color (Flex Charting)

2007-02-19 Thread Private Romeo
] On Behalf Of Brendan Meutzner Sent: Dienstag, 20. Februar 2007 00:03 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How to programmatically change fill color (Flex Charting) Hey, peopleCol.setStyle(fill, new SolidColor(_peopleColColor, 1)); Brendan On 2/19/07, Private Romeo [EMAIL

RE: [flexcoders] Are other developers hesitant to extend existing classes in Flex?

2007-02-21 Thread Private Romeo
I believe copying code could not be the correct approach. If Adobe has not designed some of the components/classes in a way that they offer easy hooks for customization, THAT'S what needs to be changed in a future version and we should contribute to precisely define what is needed. Object

[flexcoders] RE: Accessing a Flex Model via JavaScript (FABridge)

2007-02-21 Thread Private Romeo
Mehul, You actually posted to me personally and not back to the list! So I reposted... -Original Message- From: Private Romeo [mailto:[EMAIL PROTECTED] Sent: Donnerstag, 22. Februar 2007 00:37 To: Mehul Doshi Subject: RE: Accessing a Flex Model via JavaScript (FABridge) Mehul, It's

[flexcoders] Firefox (2.0.0.1) content caching and HTTPService calls

2007-02-23 Thread Private Romeo
We have build an application which polls XML data bound to Flex Charting controls via HTTPService. We have noticed that run in Firefox 2.0.0.1 it seems as if the result get cached. Even though the server side data changes the chart does not update. If you select Tools Clear Private Data in

RE: [flexcoders] Firefox (2.0.0.1) content caching and HTTPService calls

2007-02-23 Thread Private Romeo
Currently it’s a static XML file being served by an Apache Server. Any idea? From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Carson Hager Sent: Freitag, 23. Februar 2007 19:31 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Firefox (2.0.0.1) content caching