Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!stanford.edu!csli!bratt From: bratt@csli.Stanford.EDU (Harry Bratt) Newsgroups: comp.sys.amiga.programmer Subject: How to do a "MovePointer()"? Message-ID: <19997@csli.Stanford.EDU> Date: 18 Jun 91 04:22:07 GMT Organization: Center for the Study of Language and Information, Stanford U. Lines: 16 I need to change the position of Intuition's mouse pointer. I don't need lots of low-level control (like recording mouse movements and playing them back), I just need a single re-positioning once in a while. Currently I'm doing: IntuitionBase->MouseX = x; IntuitionBase->MouseY = y; SetPointer(...); This appears to work.... but... Is it legal to be writing to those IntuitionBase variables? And is there a better way to be doing this? -Harry bratt@csli.stanford.edu