Just noting we have bugs in JIRA on this theme:
http://www.openlaszlo.org/jira/browse/LPP-1490
http://www.openlaszlo.org/jira/browse/LPP-383
Elliot says:
LPP-1490 is much more useful and the last work-around that I did
for mouse
track events was really hacky and didn't work 100% of the time. I
created an
invisible view that listened for all mouse events, set a globally
accessible
var with the currently moused-over view, and then dispatched the
event to the
correct view underneath.
On Oct 23, 2006, at 2:30 PM, Adam Wolff wrote:
If we do this, can we also make it variadic so that delegates get
called
back with/can pass more than one argument.
A
On Oct 23, P T Withington wrote:
What do people think about changing the idiom:
<event>.sendEvent(<value>);
to:
sendEvent(<event>, <value>);
?
This would make it easier to detect errors (trying to send an
event to a
non-existent event) and to optimize (to not bother if there are no
listenters
for the event).
Comments?