I was splitting the events code so that the mouse events are different
and found I neded to change the following lines:
------------------------------------------------------------------------------------
if (dlyr.hasEventListeners) dlyr.captureMouseEvents();
becomes
if (dlyr.hasEventListeners&&dlyr.captureMouseEvents)
dlyr.captureMouseEvents();
------------------------------------------------------------------------------------
if (child.hasEventListeners) child.captureMouseEvents();
becomes
if (child.hasEventListeners&&child.captureMouseEvents)
child.captureMouseEvents();
------------------------------------------------------------------------------------
--
Michael Pemberton
[EMAIL PROTECTED]
ICQ: 12107010
_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev