Re: [flexcoders] Re: modify item before binding to datagrid

2009-05-24 Thread Angelo Anolin
Thanks Valdhor and Thanks to Mark for all your help. I finally got this to work. Kind regards. Angelo From: valdhor valdhorli...@embarqmail.com To: flexcoders@yahoogroups.com Sent: Saturday, 23 May, 2009 2:07:18 Subject: [flexcoders] Re: modify item before

[flexcoders] Flex Coding Standards

2009-05-24 Thread Angelo Anolin
Hi FlexCoders, Would someone be kind enough to share their coding standards relative to flex development? I am starting Flex and I would want to at least follow good standard(s) especially on coding side. Thanks and best regards. Angelo

[flexcoders] Newbie Question - databinding an arrayCollection to a List Control

2009-05-24 Thread hoytlee2000
Hello, I've been reading a lot of information on databinding and I'm still a little confused on how to execute it and when is it necessary. I have a simple list control of names that I create by adding to an array collection that I use as the List's dataprovider. when I add a name to the

[flexcoders] Swap Data Provider with a combo

2009-05-24 Thread christophe_jacquelin
Hello, I have a combo with two items. For each Item I want to have a specific data provider for a tile list. How to swap the data provider of a tile list. Thank you, Christophe

Re: [flexcoders] Swap Data Provider with a combo

2009-05-24 Thread Harish Sivaramakrishnan
put an if condition which checks for combobox.selectedItem and change the dataProvider accordingly. On Sun, May 24, 2009 at 3:08 PM, christophe_jacquelin christophe_jacque...@yahoo.fr wrote: Hello, I have a combo with two items. For each Item I want to have a specific data provider for a

[flexcoders] Re: Swap Data Provider with a combo

2009-05-24 Thread sminrana
here tileListDataProvider is a tilelist which gets data from MySql and categoryCombo is combobox which also gets data from MySql look filter image function where it is return new xmlList ..and item.(category == categoryCombo.selectedLabel) put your login in the bracket i used mine when combo

[flexcoders] Re: Swap Data Provider with a combo

2009-05-24 Thread sminrana
here tileListDataProvider is a tilelist which gets data from MySql and categoryCombo is combobox which also gets data from MySql look filter image function where it is return new xmlList ..and item.(category == categoryCombo.selectedLabel) put your login in the bracket i used mine when combo

[flexcoders] Default font in Flex Builder

2009-05-24 Thread christophe_jacquelin
Hello, What is the default font used in the interface by Flex Builder 3 ? Thank you, Christophe,

Re: [flexcoders] Flex Coding Standards

2009-05-24 Thread Romeo Obane
Hope this helps http://blog.dclick.com.br/2007/02/13/adobe_flex_coding_guidelines_english/pt/ I'm currently basing my coding standards from there :) On Sun, May 24, 2009 at 2:04 PM, Angelo Anolin angelo_ano...@yahoo.comwrote: Hi FlexCoders, Would someone be kind enough to share their

Re: [flexcoders] Flex Coding Standards

2009-05-24 Thread Sam Lai
The conventions/standards/guidelines for Flex SDK are here - http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions 2009/5/25 Romeo Obane ro...@vhubs.com: Hope this helps http://blog.dclick.com.br/2007/02/13/adobe_flex_coding_guidelines_english/pt/ I'm currently basing my

[flexcoders] Multiple events dispatched, data lost

2009-05-24 Thread steve horvath
I have a function which loops and for each iteration dispatches an event. The event handler is inside a new class (AddSourceCommand). Inside the event handler class I am dispatching another event which is being handled by a function inside the same class. There's a variable that originates

[flexcoders] Re: Multiple events dispatched, data lost

2009-05-24 Thread Tim Hoff
Hi Steve, What's going on in stuffToGetNewAlbum()? -TH --- In flexcoders@yahoogroups.com, steve horvath flexcod...@... wrote: I have a function which loops and for each iteration dispatches an event. The event handler is inside a new class (AddSourceCommand). Inside the event handler

[flexcoders] Re: Multiple events dispatched, data lost

2009-05-24 Thread Tim Hoff
Nevermind, was looking at it backwards. Usually, you would go through the FrontController, with a second command, for the second Event. -TH --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: Hi Steve, What's going on in stuffToGetNewAlbum()? -TH --- In

[flexcoders] Re: Multiple events dispatched, data lost

2009-05-24 Thread Tim Hoff
Actually yes, what's going on with phSet.id in stuffToGetNewAlbum()? Add a second trace for that field. -TH --- In flexcoders@yahoogroups.com, Tim Hoff timh...@... wrote: Nevermind, was looking at it backwards. Usually, you would go through the FrontController, with a second command, for

Re: [flexcoders] TextArea not working as Custom Item Renderer

2009-05-24 Thread Andriy Panas
I will quote from eariler post of Manish Jetani from flexcomponents mail conference If you want your item renderer to affect the height of the row set correct measuredHeight in measure() method http://www.mail-archive.com/flexcompone...@yahoogroups.com/msg02972.html If you are not confident

[flexcoders] How to determine the minimum container size while scroll bars still not needed

2009-05-24 Thread Sergey Kovalyov
Hi All! There is mx_internal::getScrollableRect() method and the value it returns does not change when you make the container smaller at some moment when scroll bars appears. But I need to know those values at any given time. Finally what I want to achieve is to have resize handle in the right

[flexcoders] list itemrenderer

2009-05-24 Thread thomas parquier
Hi, Is there a possibility to do some code differently in a drag proxy instance of itemRenderer ? thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net sip%3awebattit...@ekiga.net téléphone portable : +33601 822 056

[flexcoders] itunes clipboard format not understood in AIR

2009-05-24 Thread Paul BH
Hi there, I've been trying to drag a song from itunes into my app, but the clipboard (in AIR) doesn't seem to have any format acceptable to AIR. Does anyone have any idea how to overcome this? thanks! Paul

Re: [flexcoders] Flex Coding Standards

2009-05-24 Thread Angelo Anolin
@Sam and @Romeo Thanks for the links. Those would surely help me get started further and know that I am following good coding conventions. Regards, Angelo From: Sam Lai samuel@gmail.com To: flexcoders@yahoogroups.com Sent: Monday, 25 May, 2009 0:11:34

Re: [flexcoders] Flex Coding Standards

2009-05-24 Thread Manish Jethani
On Sun, May 24, 2009 at 9:41 PM, Sam Lai samuel@gmail.com wrote: The conventions/standards/guidelines for Flex SDK are here - http://opensource.adobe.com/wiki/display/flexsdk/Coding+Conventions One of the things the document doesn't mention is the order of the private, protected, and public

Re: [flexcoders] Multiple events dispatched, data lost

2009-05-24 Thread Manish Jethani
On Mon, May 25, 2009 at 12:59 AM, steve horvath flexcod...@stevehorvath.com wrote: I have a function which loops and for each iteration dispatches an event. The event handler is inside a new class (AddSourceCommand).  Inside the event handler class I am dispatching another event which is being

Re: [flexcoders] NEED more than 15 menu item in Context Menu ????

2009-05-24 Thread Sam Lai
Is the Flex app loaded in the IE ActiveX control, or the Flash Player ActiveX control? If it is IE, any of the tricks to hide the context menu in the normal IE browser should work. Never tried doing this myself though. On 5/23/09, Dharmendra Chauhan chauhan_i...@yahoo.com wrote: Thanks Lot for

Re: [flexcoders] chart labelRotation problem

2009-05-24 Thread Vivian Richard
Please see this link -- http://demo.quietlyscheming.com/ChartSampler/app.html In the Style folder see the Axis Labels example. You can also see the code. Regards On Sat, May 23, 2009 at 11:02 AM, Jake Churchill j...@cfwebtools.com wrote: It seems like I’ve

[flexcoders] Re: Multiple events dispatched, data lost

2009-05-24 Thread steve horvath
--- In flexcoders@yahoogroups.com, Manish Jethani manish.jeth...@... wrote: On Mon, May 25, 2009 at 12:59 AM, steve horvath flexcod...@... wrote: I have a function which loops and for each iteration dispatches an event. The event handler is inside a new class (AddSourceCommand). Inside