Re: [flexcoders] Re: is there another flexcoders list?

2011-10-12 Thread John Fletcher
I only came to this list because I tried posting on the forums and never got a single reply. And I saw heaps other unanswered questions. Hopefully they are getting better... John 2011/10/7 valdhor valdhorli...@embarqmail.com ** Of course, all the most knowledgeable people are still here

[flexcoders] spark datagrid drag drop question

2011-10-12 Thread bhaq1972
Does anyone know if the drag drop functionality will feature in the next release of spark datagrid?

[flexcoders] Re: Chart data disappears when printing with a print-specific output format

2011-10-12 Thread John Fletcher
aha I figured it out, the series array is getting mucked up/changed around by the print specific line chart. You have to duplicate it, see http://www.saltwebsites.com/2011/flex-print-specific-chart John 2011/10/11 John Fletcher I followed the advice at

[flexcoders] https, amf, load balancer

2011-10-12 Thread kelley80209
I'm struggling trying to get our app to communicate over SSL in our production environment. Environment -- - Flex 2.0.1 - AMF/Remote Objects to Java app - Load Balancer/SSL accelerator (strips SSL before gets to app server) Would like to be able to support QA and Production with

[flexcoders] accessing buttons on button bar

2011-10-12 Thread Gustavo Duenas
Hi I have this code, for a title bar, so far I can add behaviours to the main buttoms but I come with the ideo to add new sub-buttoms and I'm lost how can I put eventlisteners to them? here is the code of my buttom bar mx:MenuBar width=1079.697 height=40.151516 id=mBar labelField=@label

[flexcoders] Granite Data Services 2.3.0 RC1 Released

2011-10-12 Thread fwolff999
Hi all, Granite Data Services 2.3.0 Release Candidate 1 is out and available for download here http://www.graniteds.org/confluence/display/DOWNLOAD . Many (59!) bugfixes, improvements and new features are coming with this new release and the full change log can be found on GraniteDS'Jira

[flexcoders] Re: accessing buttons on button bar

2011-10-12 Thread valdhor
Add an event listener for the menubar rather than each item then check the label of the item that was clicked in the event. See http://livedocs.adobe.com/flex/3/html/help.html?content=menucontrols_6.html for an example. --- In flexcoders@yahoogroups.com, Gustavo Duenas gduenas@... wrote: Hi

[flexcoders] Transitions - How to

2011-10-12 Thread Davidson, Jerry
I asked about this over in the forum a couple of days ago and refreshed the post to re-add it to the first page, but no one has an answer. What is happening is when the user clicks a button on the input form it is replaced with a result form. This is done by switching states and works. What

[flexcoders] Any difference between instantiating in declaration vs. init()

2011-10-12 Thread luvfotography
Hi, Is there any difference between initializing a variable in the declarations vs. in the creationComplete function? private var scrollTimer:Timer = new Timer(500,1); or private var scrollTimer:Timer; private function init():void { scrollTimer = new Timer(500,1); } When/Why should I use

[flexcoders] Re: Transitions - How to

2011-10-12 Thread Scott Fanetti
It's not clear from your example what's is going on. Is the textArea even created by the time the outer container changes state? Sent from my iPhone