RE: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Brad Bueche
to create and keep track of. brad -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Tuesday, February 05, 2008 11:50 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Adding Event to Object that doesnt have one

Re: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Tom Chiverton
On Wednesday 06 Feb 2008, Brad Bueche wrote: The the inability to put a variable name an e4x result as a dataprovider to a chart Can you be a bit clearer ? (because I cant figure out how to put a **bindable** month name variable into the chart data provider). The whole DP is bindable, no ?

RE: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Brad Bueche
XML ignore zero? brad -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Wednesday, February 06, 2008 8:15 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Adding Event to Object that doesnt have one On Wednesday

Re: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Tom Chiverton
On Wednesday 06 Feb 2008, Brad Bueche wrote: mx:HTTPService id=chartXML url=http://path/createXML.php; ... Data provider for the chart looks like this dataProvider={chartXML.lastResult.month[02].day} That would the feb component. There are 4 charts in here. I change charts by changing

RE: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Brad Bueche
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Brad Bueche Sent: Wednesday, February 06, 2008 7:04 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Adding Event to Object that doesnt have one Looks like somebody has created what I need: http://www.darronsc

RE: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Brad Bueche
, 2008 9:58 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Adding Event to Object that doesnt have one On Wednesday 06 Feb 2008, Brad Bueche wrote: mx:HTTPService id=chartXML url=http://path/createXML.php; ... Data provider for the chart looks like this dataProvider

RE: [flexcoders] Adding Event to Object that doesnt have one

2008-02-06 Thread Brad Bueche
@yahoogroups.com Subject: Re: [flexcoders] Adding Event to Object that doesnt have one On Wednesday 06 Feb 2008, Brad Bueche wrote: mx:HTTPService id=chartXML url=http://path/createXML.php; ... Data provider for the chart looks like this dataProvider={chartXML.lastResult.month[02].day

[flexcoders] Adding Event to Object that doesnt have one

2008-02-05 Thread Brad Bueche
I'm new to flex so there may be an obvious way to do this that I am missing. In my charts, my users want to drill down from the month view to the days of month view by clicking on the month name (categoryAxis, categoryfield) for the horizontal axis. However, from what I can see CategoryAxis

Re: [flexcoders] Adding Event to Object that doesnt have one

2008-02-05 Thread Tom Chiverton
On Tuesday 05 Feb 2008, Brad Bueche wrote: 2. How do I associate this event with a layout on the screen where the object seemingly keeps no reference to position? Subclass CategoryAxis, implement IEventDispatcher (if the base class doesn't) and then add an event handler for the mouse click