On Sat, 3 Apr 2004, Padmini Paladugu wrote: > penDownEvent: > //Display some information in the specified rectangle area > handled =true;
The problem is that you're setting "handled" to true for every pen down event. You should only do that when you actually do handle the event... in this case, when the event's coordinates are within your rectangular area. If the pen down event is outside that area, you need to set "handled" to false. That will let the system take care of buttons and lists normally. -- ----------------------------------------------------------------------- Brian Smith // avalon73 at caerleon dot us // http://www.caerleon.us/ Software Developer // Gamer // Webmaster // System Administrator Seleznick's Theory of Holistic Medicine: Ice Cream cures all ills. -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
