[flexcoders] Re: Daylight Savings Time issues from Flex to ColdFusion 8.01

2009-10-25 Thread maurice_n6n
Do you have a reference for that bug, or a summary of what the problems are? --- In flexcoders@yahoogroups.com, Gregor Kiddie gkid...@... wrote: Join the club, we have T-Shirts (except it's passing Date from Flex to Java). The last communication we had with Adobe on the issue is that

[flexcoders] Re: Question?? Best method for plotting a Moving Average

2009-10-25 Thread jc_bad28
I'll vouche for ta-lib as well. I used it in an excel trading/chart app I made years ago. My approach for the ticker data array would be to use a for..loop instead of hard coding. That way you could adjust a few paramaters. When it comes to technical indicators, I prefer making the calcs

[flexcoders] Flex Builder with Windows 7

2009-10-25 Thread Christophe
Hello, Does Flex Builder 3 is working fine with Windows 7 ? Thank you, Christophe,

Re: [flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-25 Thread Angelo Anolin
Could you try this one in your resultHandler private function resultHandler( event:ResultEven t):void { var xmlResult:XML = XML(event. result); var Employees:XMLListCollection = new XMLListCollection( xmlResult.table( )); trace(Employees) ; } From:

[flexcoders] Amazing Flex/LCDS/Java/Eclipse/Maven2 step-by-step guide

2009-10-25 Thread jeffreyr6915
I recently came across the best Flex/LCDS/Java/Maven2 guide that I have ever seen before (http://www.flexlcds.com). I have been looking for something like this for a very long time. If you are interested in how all the concepts come together (frontend, middleware, backend, build/deploy), please

[flexcoders] Re: Flex Builder with Windows 7

2009-10-25 Thread ag_rcuren
I am running a Windows 7 release candidate and it is working fine for me. Not sure about the full version. --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, Does Flex Builder 3 is working fine with Windows 7 ? Thank you, Christophe,

[flexcoders] Re: Flex Builder with Windows 7

2009-10-25 Thread Alex
You'll need to use at java 1.6 update 6 under Windows 7 but other than that it should all be smooth sailing. Alex --- In flexcoders@yahoogroups.com, Christophe christophe_jacque...@... wrote: Hello, Does Flex Builder 3 is working fine with Windows 7 ? Thank you, Christophe,

[flexcoders] Detect if any of the Items on a List are Selected - thought it would be easier.

2009-10-25 Thread steveb805
The only property I could find, from the Flex docs, that tells you whether your List control has anything selected is: isItemSelected(). And this takes a parameter that refers to a specific item. So before my Delete button handler, I check if any item is selected with the following: private

[flexcoders] How to access accordion to datagrid...

2009-10-25 Thread siva
Hai all, In data grid component, i create various xml files...In accrodion component i click particular label ,at that time onely one xml file willbe loaded on datagrid component..so,plz reply on how to intract on accordion to datagrid

Re: [flexcoders] Detect if any of the Items on a List are Selected - thought it would be easier.

2009-10-25 Thread Fotis Chatzinikos
you can use the list's properties (arrays of indices, or items): selectedItems selectedIndices On Sun, Oct 25, 2009 at 7:19 PM, steveb805 quantumcheese...@gmail.comwrote: The only property I could find, from the Flex docs, that tells you whether your List control

[flexcoders] [Module][Flash10/9 integration] Can i load a flash 10 module into app build on 9

2009-10-25 Thread fotis.chatzinikos
Hello all, Has anybody tried loading a flash 10 module, into an application build using version 9? Is it possible? Thanks, Fotis PS: In case anybody noticed, I spammed the list with a message in Greek. It was sent here by mistake, I am sorry.

RE: [SPAM] Re: [flexcoders] Can't bind XMLListCollection to Datagrid

2009-10-25 Thread Tracy Spratt
You have a namespace issue. You might be able to use the namespace in the dataField, like this: dataField=datas6::Employee LastName, but I am not sure that will work. But I would declare a namespace and use that. I don't have any code handy, but search for namespace and you will find

RE: [SPAM] [flexcoders] How to access accordion to datagrid...

2009-10-25 Thread Tracy Spratt
If I understand correctly what you want, you could use the show event of the accordion child component to load the appropriate data into the datagrid. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com]

RE: [flexcoders] [Module][Flash10/9 integration] Can i load a flash 10 module into app build on 9

2009-10-25 Thread Alex Harui
First SWF loaded sets the API version for all other SWFs. The module expecting FP10 APIs should fail with verify errors. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

RE: [flexcoders] Detect if any of the Items on a List are Selected - thought it would be easier.

2009-10-25 Thread Alex Harui
If you want to know if anything or nothing is selected, simply test for selectedIndex==-1 Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Fotis

RE: [flexcoders] need help making a UITextInput update its numLines property

2009-10-25 Thread Alex Harui
Make sure UITextField's .width is set to some proportion of the UIComponent's explicitWidth. However, I think numLines may not get updated until after render so you may need to use callLater to go back and truncate. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: