Monday, 2024-05-13, 11:49 AM
Welcome Guest

Blog

Main » 2011 » March » 27
I assume that you already read my first tutorial on how to create a simple hotkey. In this tutorial, we will be going to create a simple DotA Hotkey.

On the previous tutorial, we created a simple hotkey, and today we will going to make a simple DotA Hotkey.

We will use the same syntax, see below, to create the hotkey. Lets say for example the item slot 1 or the item on Numpad7, the upper-left item, the commonly used hotkey is Alt+Q so that's is what we are going to use.

And this is the syntax that we are going to use:

Code
YourHotkey:: Send, [ Keys

YourHotkey = your desired hotkey (!Q or Alt+Q in this ... Read more »

Views: 8144 | Added by: GarenaZero | Date: 2011-03-27 | Comments (0)

Hello guys. I am here to teach you how to create a simple hotkey using AutoHotkey programming language.

What is AutoHotkey?
AutoHotkey is a free, open source macro-creation and automation software utility which allows users to automate repetitive tasks. Any application user interface can be modified by AutoHotkey (for example, with Emacs style). It is driven by a custom scripting language that is aimed specifically at providing keyboard shortcuts or hotkeys.

What are Hotkeys?
Hotkeys are sometimes referred to as shortcut keys because of their ability to easily trigger an action (such as launching a program or keyboard macro).

Now you know what is AutoHotkey and Hotkey, lets have an example.

Example:
First, create a new AutoHotkey Script file and edit it using no ... Read more »

Views: 1685 | Added by: GarenaZero | Date: 2011-03-27 | Comments (0)

We can make a simple web browser in AutoHotkey with the help of COM Standard Library. It was written by Sean, one of the creators of AutoHotkey. You can read the whole post here to know more about this functions.

First download the appropriate library for you to use, depending on your AutoHotkey version. For AutoHotkey Basic users, COM.zip; for AutoH ... Read more »

Views: 3587 | Added by: GarenaZero | Date: 2011-03-27 | Comments (1)