Hi all,
This is for my personal use only.
I am trying a little project how to use AutoIt plugin and make it do all the work for me.
e.g
Use AutoIt to change the MouseHoverTime in the Registry Editor.
This is the process
Regedit.exe
HKEY_CURRENT_USER
Control Panel
Mouse
Change "MouseHoverTime" from 400 to 10
The code below is as far as I have got. It does not select "Control Panel" Is it possible to go further with AutoIt, then select Control Panel then Mouse then MouseHoverTime then change to 10.
This is for my personal use only.
I am trying a little project how to use AutoIt plugin and make it do all the work for me.
e.g
Use AutoIt to change the MouseHoverTime in the Registry Editor.
This is the process
Regedit.exe
HKEY_CURRENT_USER
Control Panel
Mouse
Change "MouseHoverTime" from 400 to 10
The code below is as far as I have got. It does not select "Control Panel" Is it possible to go further with AutoIt, then select Control Panel then Mouse then MouseHoverTime then change to 10.
Code:
AutoIt.SetOption("SendKeyDelay", 100) AutoIt.Send("#r", 0) AutoIt.Send("regedit.exe{Enter}", 0) AutoIt.Send("HKEY_CURRENT_USER{Enter}", 0) AutoIt.Send("Control Panel{Enter}", 0)
Comment