Path: utzoo!attcan!uunet!bu.edu!snorkelwacker!bloom-beacon!EXPO.LCS.MIT.EDU!rws From: rws@EXPO.LCS.MIT.EDU (Bob Scheifler) Newsgroups: comp.windows.x Subject: Re: How can I find out when my app is moved?? Message-ID: <9007111247.AA20146@expire.lcs.mit.edu> Date: 11 Jul 90 12:47:56 GMT References: Sender: daemon@athena.mit.edu (Mr Background) Organization: The Internet Lines: 13 XtAddEventHandler (main_form, ConfigureNotify, FALSE, TestHandler, NULL); You want StructureNotifyMask, not ConfigureNotify. The argument is a mask, not a type. Also, you want to select for this on the shell, not on any inferior widget. Also I'd like to know why xscope DOESN'T show a ConfigureEvent when I move the app via mwm. It doesn't show a real event because your window isn't moved, the frame window that it's inside of is moved. If it doesn't show a synthetic event being sent to the shell, then probably mwm isn't sending one?