[flexcoders] Air App config file?

2011-12-07 Thread chinwesley
Hi everyone, I have made an Air App in Flash Builder 4.5. It is used to display stats. It has several different screens which rotate every minute (ie. a new screen is shown every minute). The thing now is that I want to use the same app but display different information on different

[flexcoders] Formatting time

2011-10-27 Thread chinwesley
Hi everyone, I have a variable that stores a time from the database in seconds. eg. 333545 I want to format this time to be in this format: hours:minutes:seconds. How can I do that? Regards

[flexcoders] Formatting a date

2011-09-29 Thread chinwesley
Hi everyone, I am formatting my date for a Flex label but I don't know how to do it. I have the following at the moment: var formatter:DateFormatter = new DateFormatter(); formatter.formatString = -MM-DD; var example:Date =

[flexcoders] Flex line chart

2011-09-12 Thread chinwesley
I want to create a line chart in Flex. I know how to create a simple one but the one I need to create needs to have 6 series (lines). The problem is that when I get the data from MYSQL, there is 6 xFields (one for each line) that are the same. eg. Western Cape - January, Western Cape -

[flexcoders] Automatically flip through 3 charts

2011-09-06 Thread chinwesley
Hi everyone, I am using Flex 4.5. I have 3 charts in a viewstack. I would like to rotate through each chart after every 5 seconds. It must do this automatically. So I guess the viewstack will have to update every 5 seconds. How can I do this? Any help is appreciated.