From: Michael P. <mp...@ph...> - 2001-02-20 04:08:27
|
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 mp...@ph... ICQ: 12107010 |