I'm implementing a "self-tutorial" into my app,
and wondering if there's a way of moving a mouse
cursor on command? probably using sys,os modules?
Such activities are specific to the graphical system of the
underlying OS... They wouldn't be in such basic modules -- On a Linux
system, you probably have to use low-level X-routines, and M$ Windows
has its own native API (On AmigaOS you'd patch into the input stream
handler at a high priority and write events -- you could also write
events for keypresses, disk changes, etc. as they all went through the
same input stream processor; a data structure identifying the type of
event, timestamp, coordinates/key-codes, etc.)
--