AutoHotkey Webinar Videos and Links Here is a link to video of the First hour Video of Second hour where we chit-chat about troubleshooting and other items. Link to AutoHotkey Webinar resources: Jackie Sztuk: Admin@jszapp.com jszapp.com Connect on LinkedIn YouTube videos Resources Joe Glines: Joe@the-Automator.com the-Automator.com Connect on …
AutoHotkey
9 Reasons why AutoHotkey isn’t as bad as You Think
AutoHotkey has always been a great way to make things interesting when it comes to using the Computer. Whether you use the computer at home or at your office, AHK can surely make your life easier by its time-saving and efficiency-improving scripts. Since most people are not aware about it or don’t have the time …
10 Handy AutoHotkey Scripts to Make Your Life Easier
AutoHotkey (AHK) is a great way to increase your productivity. AHK, quite simply, cuts down the number of keys you might have to press to make the computer perform a specific task, and also reduces the amount of time taken for that task to be performed. AHK can be employed, to launch any of your …
9 Reasons No One Talks About AutoHotkey
As remarkable as it is, AutoHotkey is the way to automate all your keyboard shortcuts and make computing easier. It is an amazingly resourceful tool when it comes to automating and making tedious tasks shorter. But sadly, there are quite a lot of reasons why it is not quite famous among the general public. The …
11 Very Basic AutoHotkey Scripts for Novices
Let’s begin this guide by defining the elephant in the room, ‘AutoHotkey’. AutoHotkey is a powerful and free automation tool that allows you to perform any task automatically on your windows machine. If your new to using AutoHotkey, downloading is required (you will need to visit the home page of AutoHotkey to download the AHK installer …
17 Things Wikipedia Can’t Tell You about AutoHotkey
Wikipedia is regarded as one of the best encyclopedias available on the internet. Therefore, it provides information on almost anything and everything. But, when it comes to AutoHotkey, AHK for short, it really lacks to provide authentic and essential information. The information currently present on the AutoHotkey’s Wikipedia page is not very enticing for the …
19 Facts about AutoHotkey That Will Impress Your Friends
AutoHotkey, AHK for short, is an amazing scripting language that can be used to automate a number of mundane and tedious computer tasks. Used for Windows Operating Systems, AHK can provide you complete control over a variety of applications that you have installed on your computer. There are a number of shortcuts that one can …
AutoHotkey Scripting – Loops
Let’s discuss the loop and how to use it in AHK In this post I try to present looping, one of AutoHotkey’s basic concepts in a non-programmers way So I’ll discuss two of the loops available in AutoHotkey. Once you are clear about these two loop commands, you can find more in the AutoHotkey documentation /other resources So remember …
AutoHotkey Scripting: Reserved keywords
Now it is time for Reserved keywords So far, we have covered an important concept called variables. We discussed how to use the operator := to specify values. We also looked at what to name the variables. Like True and False are the names of two built-in variables. There are many other keywords supported By AHK which are reserved and …
AutoHotkey Scripting: Variables
When you create variables, you’re telling the computer to find a place in memory and store a value there. Later, when you update / retrieve from the variable, the computer knows to look at that place in memory. Let me provide an example, assume you want to store two values (20 and 10) in your script and, at …