Hi Java Noob, javaNoob <[EMAIL PROTECTED]> wrote on 09/11/2007 07:13:52 AM:
> i thought that that is the main goal.. to cast the event to an awt event.. i > would like to know how to determine a double click using EventListener No you want the DOM Event as a DOM MouseEvent (it isn't an AWT MouseEvent): http://www.w3.org/TR/DOM-Level-2-Events/events.html#Events-MouseEvent From that interface you can get the 'detail' which will have the click count in it. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
