Path: utzoo!attcan!uunet!mcvax!unido!rmi!infoac!infohh!shimoda From: shimoda@infohh.rmi.de (Markus Schmidt) Newsgroups: comp.sys.amiga.tech Subject: Re: Ask Mr. Intuition (RELVERIFY woes) Keywords: Intuition gadgets RELVERIFY GADGETUP frustrated Message-ID: <476@infohh.rmi.de> Date: 19 Jan 89 10:32:09 GMT References: Reply-To: shimoda@infohh.rmi.de (Markus Schmidt) Organization: RMI Net * Aachen/Hamburg/Flensburg * W.Germany Lines: 29 In article kevin@uts.amdahl.com (Kevin Clague) writes: >[ I'm a line-eater and I'm O.K., I eat mail at night and I sleep all day ] Oh, a Mothy Python Line eater ... > Mhh, two hints. When Intuition does not send you a GadgetUp maybe it will provide you with a SELECTUP since the button-event has no meaning to intuition?! If your duty is too consuming to be done for each movement do it only for the last of a bunch of arriving movemets: while (imsg=GetMsg(w->UserPort) { if (imsg->Class==MOUSEMOVE) { ReplyMsg(imsg); } else { ReplyMsg(imsg); break; } } ... Do your stuff ... /* the loop isn't super-smart code :-) */ Cu Markus