Autohotkey Learning – Chapter1
When I played the video games, I always set up a lot of hot keys to ensure that my hand moving could be as fast as possible.
http://photo.blog.sina.com.cn/showpic.html#blogid=81d209c001011jfp&url=http://s4.sinaimg.cn/orignal/81d209c0gc3da6d1bce43
What is Autohotkey? Automation. Hotkeys. Scripting.
It is a open source script language which could help you to set up the hot keys to accelerate your working and improve the productivity.
I searched from the website and found a lot of books to learn. I will follow up the steps to create my auothotkey.
First, let’s see the real example to realize the first success.
1. Find your link where the AHK is saved
C:\01_Flat\Program Files (x86)\AutoHotkey
2. Create one notepad and write down the script
#space::
msgbox, Learning Autohotkey `n Make our life easy
return
3. Use the quick key: Win+Space, the result is following.
Pop out the message box
4. More description for signal
# = Windows
msgbox = Box
‘n = Another line
return = more command line to use
5. A special application
#space::
msgbox, Learning Autohotkey `n Make our life easy.
return
^!b::
Run http://blog.sina.com.cn/sdjsjczp
msgbox, welcome to the blog `n Please write the blog today.
return
^!n::
Run notepad
Run mailto:flat.chen@sap.com
return
#c::
Run calc.exe
return
********************************************
The most happy thing is to run the computer calculater by WIN+C and open my blog by ctrl+alt+b.
What are eaiser than before.
To be continue.