Channel | Publish Date | Thumbnail & View Count | Actions |
---|---|---|---|
| Publish Date not found | ![]() 0 Views |
You need to be more productive and in this 30 minute AutoHotkey tutorial I’ll teach how to be more productive by automating your Windows PC in 30 minutes by learning:
• How to launch programs by hitting a /”Hotkey/” / key-combo
• To Type a few letters and send words / paragraphs / template of text via HotStrings in AutoHotkey
• How to Send Mouse Clicks to an area on your screen
Table of Contents to automate your Windows PC:
1. Which version of AutoHotkey to download and install
Download AutoHotkey: https://www.autohotkey.com/download/
I recommend installing 32-bit Unicode version
2. Which editor / IDE to install
While I use AHK Studio, for beginners I recommend Sci4AutoHotkey
Download it from: https://the-automator.com/SciTE
3. Editing and Launching your AutoHotkey productivity script
a. Default settings to have in your ahk script
b. Launching your script
4. How to set-up AHK productivity Hotkeys to:
a. Launch a program
b. Send a mouse click
c. Send text to a window
5. How to create AHK productivity Hotstrings to:
a. Send text to a window
b. Send /”special/” characters
c. Send without the space at the end
6. How to Troubleshoot your code- Get your productivity tips here!
7. Recommended tools for starting out
a. functionality w/o programming www.QuickAccessPopup.com
b. www.ahkgen.com for help writing Hotkeys and HotStrings
c. Automate my Task for clicking and sending text https://the-automator.com/AmT
You might also be interested in my HotStrings / Text Expansion Udemy course: https://the-automator.com/HotStrings
Deeper-dive to Learn how to automate your PC
And my Intro to AutoHotkey course: https://the-automator.com/Intro_to_AutoHotkey
Check out more of my scripts at: http://the-automator.com Joe Glines
If you get value out of this video… https://www.paypal.me/JoeGlines
Here is the code I generated during the video:
#SingleInstance,Force
; Windows=# Alt=! Shift=+ Control =^
#n::
MsgBox hi
Run notepad.exe ;This will launch Notepad
Run explorer.exe ;This will launch Notepad
Return
^t:: ;Activate window and click search
Winactivate,ahk_exe SciTE.exe ;Activate SciTE
;~ MouseGetPos,winX,winY
;~ MsgBox %winX% %winY%
Click,403,68
return
::btw.::By the way
::jg.::Joe Glines
:o:pwd.::SomeCrazyPasswordIcantRemember
:o:jge.::[email protected]
::bb.::You have`nto see`nthe Baby{!}
^g:: ;Paste in text
Clipboard:=/”this is really cool how this works/”
Send,^v
return
#automate your pc #Automateyourcomputer #windowsautomation
Please take the opportunity to connect and share this video with your friends and family if you find it useful.