Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Douglas Knudsen
> *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On > Behalf Of *Douglas Knudsen > *Sent:* Monday, February 05, 2007 3:17 PM > *To:* flexcoders@yahoogroups.com > *Subject:* Re: [flexcoders] MouseUpSomewhere event, whence hast thou > gone? &g

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Michael Schmalle
liate <http://www.tribalchicken.com/> -- *From:* flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] *On Behalf Of *Douglas Knudsen *Sent:* Monday, February 05, 2007 3:17 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] MouseUpSomewhere event, when

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Ben Stucki
From: "Douglas Knudsen" <[EMAIL PROTECTED]> Sent: Monday, February 05, 2007 12:18 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone? that adds a mouseUp listener/handler for the whole app, eh? How do I know if

RE: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Grant Davies
7 3:17 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone? that adds a mouseUp listener/handler for the whole app, eh? How do I know if this mouseUp is related to the object the user gestured a mouseDown on? Kind of coupled up too. What I have

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Douglas Knudsen
that adds a mouseUp listener/handler for the whole app, eh? How do I know if this mouseUp is related to the object the user gestured a mouseDown on? Kind of coupled up too. What I have is this screen snap http://www.cubicleman.com/snaps/snap.png I have mouseDown capture on the bluish color box t

RE: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Piotrowski, John
I ran into similar problems with handling mouse events when converting an app from 1.5 to 2.0. I found that most of the time, I wound up transferring the eventlistener to another object (like the parent, since mouse events propagate up). But I have had success when adding the mouse_up event insid

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread Michael Schmalle
Hi, try adding a listener to the systemManager; IE systemManager.addEventListener(MouseEvent.MOUSE_UP, systemManager_mouseUpHandler); Peace, Mike On 2/5/07, Douglas Knudsen <[EMAIL PROTECTED]> wrote: I'm converting a Flex 1.5 app to 2.0. Under 1.5 I used a event on a HBox called MouseUpSo

Re: [flexcoders] MouseUpSomewhere event, whence hast thou gone?

2007-02-05 Thread slangeberg
I'd first try adding the listener to the stage of the item, else you can place listener on the application itself.. something in ballpark of (sorry if not exact spelling, objects, etc): myHBox.stage.addEventListener( MouseEvent.MOUSE_UP, onMsUp ); -Scott On 2/5/07, Douglas Knudsen <[EMAIL PROTE