[flexcoders] Re: Binding deeper XML to datagrid

2008-01-17 Thread tedgies
you expect? What is not working? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tedgies Sent: Wednesday, January 16, 2008 5:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Binding deeper XML to datagrid

[flexcoders] Binding deeper XML to datagrid

2008-01-16 Thread tedgies
Hi FlexCoders, I'm trying to show the items from XML below in a datagrid, but the only examples i've seen show how to deal with XML items that are not as deep as the one below. So, basically it's not working out. Is this a syntax issue, or do i need to cycle through my xml and create a new

[flexcoders] HTML Text in a Tab Navigator Label?

2007-12-13 Thread tedgies
Hi Flexcoders, Does anyone have a solution for having html text within a TabNavigator's label text? I would like to make part text of the tab in italics, while the other part should have no text decoration. My first inclination was to try and use a htmlText for the label of the child VBox,

[flexcoders] Rotating an object (image) in place

2007-12-10 Thread tedgies
Hi FlexCoders, I'm trying to solve a problem where i'd like an image to rotate in place. I use this spinning image to denote the loading of new data in my application. (aside: The spin will be slow and non-flickering for good accessibility). On a webpage, i've achieved this sping using the

[flexcoders] Re: Binding to a ViewStack Child Container Property

2007-12-05 Thread tedgies
] wrote: On Tuesday 04 Dec 2007, tedgies wrote: I'm trying to bind a label's text to the selected VBox's toolTip text. I'm trying: mx:Label id=titleText text={vs_articles.selectedChild.toolTip} And ? -- Tom Chiverton Helping to preemptively supply vertical users on: http

[flexcoders] Binding to a ViewStack Child Container Property

2007-12-04 Thread tedgies
Hi Flexcoders, I'm trying to bind a label's text to the selected VBox's toolTip text. I'm trying: mx:Label id=titleText text={vs_articles.selectedChild.toolTip} Where 'vs_articles' is the id for the VBox's ViewStack. I do get the following binding to work properly: mx:Label id=titleText

[flexcoders] Dynamic LineSeries based upon Array Collection?

2007-05-31 Thread tedgies
Has anyone had any success in creating a chart with a series that you can add to at runtime? (Like Yahoo finance charts 2.0). I haven't yet seen an example where the LinSeries is based upon a changing (growing) set of external xml data files. Below i paste a snippet where i try to for loop

[flexcoders] Re: Treat a string as a reference to an object?

2007-05-28 Thread tedgies
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of tedgies Sent: Friday, May 25, 2007 10:43 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Treat a string as a reference to an object? Hi, I was wondering if Flex/Actionscript allows you to create references

[flexcoders] Treat a string as a reference to an object?

2007-05-25 Thread tedgies
Hi, I was wondering if Flex/Actionscript allows you to create references to object properties on the fly with a dynamically created string. For example i would like to add a new series to a chart series at runtime and dynamically create the reference to dataprovider (an httpservice) with a

[flexcoders] Setting the label attribute in the PlotSeries object to an array?

2007-01-19 Thread tedgies
Hi, Is there a way to put additional information in the Label in charts? If you look at the example below, i have a one dimensional array with 2 book titles in it. I am plotting the timesPurchased in the Y axis. On the x axis i just have a unique index of each book. What i would like to do