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 …
Guide
AutoHotkey Scripting – If/Decisions/Logic
Decision making is critical to Scripting/programming also in Autohotkey. There will be many situations when you will be given two or more options and You will have to select one option based on the given conditions. If for example: You want to show a remark about John (a student) based on his scores. Take this situation …
AutoHotkey Scripting: Operators
Operators in programming are symbols that tells the compiler or interpreter to perform specific mathematical, relational or logical operations and produce final results. This post will explain the concept of operators and I will take you tough the important arithmetic and relational operators available in AutoHotkey. Arithmetic Operators Computer programs are widely …
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 …
Autohotkey COM Video Reference: Internet Explorer Basics
Discover how Easily you can Automate IE Using Autohotkey’s build in COM object support Ever since I learned how to use scripts to automate my work I have been using COM to automate MS office programs Like IE, In this Video tutorial I will show you step by step how you can easily use AutoHotkey to: Perform calculations, analyse information …
AutoHotkey COM Video Reference: Outlook basics
I’ll help you discover how Easily you can Automate Outlook Using Autohotkey’s build in COM object support Ever since I Started using scripts to automate my work I have been using COM to automate MS office programs Like Outlook, In this Video tutorial I will show you step by step how you can easily use AutoHotkey to: Create and …
AutoHotkey COM Video Reference: Word basics
Discover how Easily you can Automate Word Using Autohotkey’s build in COM object support Ever since I Started using scripts to automate my work I have been using COM to automate MS office programs Like Word, In this Video tutorial I will show you step by step how you can easily use AutoHotkey to: Create new documents, edit various …
AutoHotkey Scripting Thoughts: A Script Is…
Late evening, it’s raining, I think a thunderstorm is coming because I’ve just seen the flashes of lightning. There is always a good chance for rain here in Denmark. We also have a saying: “There is no bad weather, only bad attire” — but tonight I’m still happy to be making my script indoors. Anyway, listening to Distant Thunder from mynoise.net and waiting …
6 Autohotkey tricks to be more productive
I think, we all wish, we could be even more productive at work and at home — but that’s so much easier said than done. In a 2013 survey by AtTask a software company, workers reported spending just shy of half of their time a week on things other than their primary job duties or in things like meetings. To …