--- In [email protected], "powerprorocks2" <[EMAIL PROTECTED]> wrote: > > > Hi > > I want to hide the mouse cursor while I am typing or scrolling with > the mouse wheel or after some seconds without moving the mouse. > > I don't know, think this is possible with PP. I did not find anything > in the Help. > > How can I do this?
You have to use scripting and events, there is nothing built in to PowerPro that does it. For hiding cursor when no keyboard or mouse activity: have an event that runs every 200 ms (say). Uses function lastmousekeytime to check time of last action. If greater than threshold, save mouse position from xmouse, ymouse into static variables then move mouse cursor off screen with *move move command. Also, now your event has to change state and processing so that when there is mouse or key action, it moves the cursor back. It may be possible to move the mouse cursor in the other circumstances you mention by using mousetrap or keytrap functions to detect activity. Again, you could have to script something. ------------------------ Yahoo! Groups Sponsor --------------------~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/u8TY5A/tzNLAA/yQLSAA/JV_rlB/TM --------------------------------------------------------------------~-> Attention: PowerPro's Web site has moved: http://www.ppro.org Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/power-pro/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
