Open GoogleCodeExporter opened 8 years ago
If the source has event.stopPropagation() inside their MouseUP event handler, I
don't think there is much you can do. Worth try recompiling flash console with
higher priority and capture phase for mouse up event and see if it helps.
Original comment by luay...@gmail.com
on 30 Dec 2013 at 10:55
Thanks, that is probably the culprit.
I see in the source exactly:
public function mouseUpHandler(event:MouseEvent) : void
{
...
event.stopPropagation();
}
I will try that. I would think that if I set the console's event priority
highest it should fire off first, thus delaying the target's
"event.stopPropagation()" call until after.
Thanks for the awesome drop-in console :-)
Original comment by yourneig...@gmail.com
on 31 Dec 2013 at 12:43
Original issue reported on code.google.com by
yourneig...@gmail.com
on 30 Dec 2013 at 2:10