Re: [flexcoders] How to tell if colorpicker is open

2010-02-27 Thread Robert Moss
I was hoping to not have to keep track with flags in my code, but interrogate the component for it's state.  However, using flags is still better than using mx_internal.  Thanks. --- On Sat, 2/27/10, Alex Harui aha...@adobe.com wrote: From: Alex Harui aha...@adobe.com Subject: Re: [flexcoders]

Re: [flexcoders] How to tell if colorpicker is open

2010-02-27 Thread Alex Harui
You could scan the systemManager’s rawChildren to see if any children have (owner is ColorPicker). On 2/27/10 7:05 AM, Robert Moss rdm0...@yahoo.com wrote: I was hoping to not have to keep track with flags in my code, but interrogate the component for it's state. However, using flags is

[flexcoders] How to tell if colorpicker is open

2010-02-26 Thread Robert Moss
I can not seem to find a way to tell programmatically if the colorpicker is open. Internally it uses the showingDropdown property, but it is not exposed. I could use myColorPicker.mx_internal::showingDropdown but there has to be a better way. I'm sure I'm just missing it.

Re: [flexcoders] How to tell if colorpicker is open

2010-02-26 Thread Alex Harui
There should be open/close events On 2/26/10 2:29 PM, Robert Moss rdm0...@yahoo.com wrote: I can not seem to find a way to tell programmatically if the colorpicker is open. Internally it uses the showingDropdown property, but it is not exposed. I could use