Re: [flexcoders] mousedown scope

2005-05-27 Thread Tom Fitzpatrick
Thanks Manish. I sidestepped the issue by limiting the top-level mousedown so it doesn't conflict with the subcomponent mousedown. That solved my immediate problem. So - I didn't have a change to try setting event.bubbles to false. - Tom At 10:02 AM 5/27/2005, you wrote: On 5/27/05, Tom

[flexcoders] mousedown scope

2005-05-26 Thread Tom Fitzpatrick
I have a custom component, based on the Panel component, that can be selected with a mousedown. The component contains subcomponents that also have mousedowns with different behaviors. Is it possible to disassociate the two? Right now, clicking the subcomponent also selects the Panel. I'd