AutoHotkey is an open-source automation software utility (for Microsoft Windows) which allows users to create macros, hotkeys, automate keyboard and mouse input, create GUIs, and automate other repetitive tasks.

learn more… | top users | synonyms

0
votes
0answers
13 views

How to force VisualStudio to select the entire jQuery variable ($myVar) on double click

I would like to know how to force visual studio 2008 to select the entire variable name when using the jQuery variable standard. Ex : $myVar = $("#MyDiv"); When you double click on "myVar", Visual ...
-1
votes
0answers
17 views

Send formatted text to Wordpad from ahk script

I want to send some text to Wordpad from my autohotkey script and I want specified words in text be highlighted (bold, red or maby both). Is it possible? Thanks.
0
votes
0answers
35 views

AutoHotkey, Ctrl+F, if result found than sleep else

I am using AHK to find some text for in internet explorer by pressing CTRL+F. I am having hardtime coding this condition. If result is not found then go to next command elseif result is found then ...
-1
votes
0answers
23 views

Exclude Process from WinExist()

I'd like to exclude Chrome from this setup, because it doesn't work with disabled windows settings, it removes not just the min/max/close buttons, it removes the tabs too, but I just don't know how ...
0
votes
1answer
25 views

How to check two variables in a condition in AutoHotKey

I have a script, which is working more or less. I started a program and pressed some keys. Depending on several factors the program show one of two screens. If the screen is number 1 then it should ...
0
votes
1answer
34 views

how to make an AHK script to drag and drop the current playing file from winamp into another program?

I'm trying to write a script that drops the current playing file from Winamp into Tabbles (a file tagging software http://tabbles.net ) I found this example but it didn't help much: ...
0
votes
2answers
46 views

How to only execute next command after first command is executed in AHK?

I have AutoHotKey script. Currently my AHK script is running all the time. and it waits for user inputs. if user presses 11 then do something. if user presses 12 then do something else. current ...
1
vote
1answer
24 views

Capslock triggered hotkeys

Here's my code: state := GetKeyState("Capslock", "T") if state = true F1::Run explorer F2::Run notepad F3::Run Calc F4:: if state = false return i want this part: F1::Run explorer F2::Run notepad ...
-2
votes
1answer
27 views

Extra space added after my script

I just started using AutoHotKey and I wrote the simple script ::o::email address however, to enact this text change i press space and it inputs a space after the address. This causes the system to ...
-2
votes
0answers
17 views

I want to run multiple instances using autohotkey but a mutex is preventing me

No idea how but I'm more comfortable with AutoHotKey(AHK). I have the following. Name:\Sessions\1\BaseNamedObjects\DragonSaga_Client Type: Mutant Object Address: 0xfffffa800c098fc0 Granted Access: ...
0
votes
1answer
11 views

How to work in-cell editing in Autohotkey listview

In my GUI, I have a standard listview control into which I've loaded several rows worth of values. How can I fix it so when I click on the field in the listview that it enters text-edit mode for that ...
2
votes
1answer
23 views

Autohotkey - Undo entire macro instead of single commands (Windows 7)

I tried searching for an answer beforehand but didn't find what I was looking for. Apologies in advance if this has been answered before. I do some web work and created a macro in AHK that binds ...
-2
votes
1answer
29 views

Simple macro help wanted

I just started using AutoHotKey yesterday and I am having trouble finding some info. I did search the program's help file, their website and this site and can't seem to locate what i would like to ...
2
votes
3answers
58 views

AutoHotKey: Getting a chord to set off a hotstring

I use thousands of AHK hotstrings. For example (simplified): ::btw::by the way Unlike most AHK users, the only endkey I allow is \. So when I type btw\, I get by the way. Space or enter or other ...
0
votes
1answer
54 views

How can I get Autohotkey to press a differnet button with a button input?

~LALT:: Send {DELETE DOWN} ~LALT UP:: Send {DELETE UP} ~NUMPAD0:: Send {DELETE DOWN} ~NUMPAD0 UP:: Send {DELETE UP} There is my current code. I want to make it so that when I'm holding down either ...
0
votes
0answers
7 views

How to run AutoHotkey.exe in the foreground? [migrated]

This command returns before my script is finished: autohotkey myscript.ahk parm1 parm2 How do I run this in the foreground (not exit until done)?
1
vote
1answer
31 views

Autohotkey How to hold a mouse button while a key is pressed?

In short: How do I write an autohotkey script so that when I press, say, F1, it presses the mouse button down and only lets it go after I let go of the key? I did some research on both autohotkey ...
0
votes
1answer
17 views

How to Use GuiDropFiles with GUI controls?

How can I use GuiDropFiles with GUI controls? I have several edit fields in my form, and I want to be able to drop files onto them separately and work with them. This is what I came up with: First, ...
-1
votes
1answer
27 views

multiple hotkey commands in a autohotkey script

I'm trying to write a script that will do one of the following based on hotkey commands using one autohotkey script: a) open a specific (1 out of 10) vnc connection accross a network, b) open 5 (5 out ...
0
votes
2answers
54 views

filtering keyboard input with autohotkey

I recently broke my keyboard, and wrote some very makeshift, inefficient programs in autohotkey to fix them here are the outputs of my current laptop keyboard: y = ry h = fh n = {enter}+n ...
0
votes
0answers
48 views

Audio multi-cast software needs a multi-window `Click down` .. was this tested?

I'm trying to multi-cast audio do a number of channels. The software requires that I click and hold a button to broadcast. So, I wrote this little script to do the job. After running several copies ...
0
votes
0answers
15 views

Autohotkey when station locked [migrated]

I'd like to be able to use hotkeys to run scripts when the screen is locked. I have: ^!p::Run, D:\path\to\my\script.bat But if the computer is locked it won't run. I'm running Win7 64.
0
votes
4answers
66 views

AutoHotKey run program on any key

I'd like to run a program when any key is pressed with AutoHotKey Something like: AnyKey::Run, D:\my\program\to\run\on\any\key.bat EDIT2: This code is working perfectly: #InstallKeybdHook ...
-1
votes
1answer
38 views

Unable to open “.ahk” file in a Sikuli program

Suppose I have x.ahk, which is an AutoHotKey file. I want to open it through my Sikuli program. I tried the following methods: openApp("F:\\folder\\x.ahk") I got the following error [info] ...
-1
votes
1answer
49 views

Changing AHK Response, Everytime I move my mouse :(

Here's my sample script $f2:: loop, 1 while GetKeyState("f2", "P") { setkeydelay, 1 send, {f2} click } return I have 3 delays Normal, Fast, Faster everytime I move my mouse it changes its ...
0
votes
1answer
29 views

AHK: very simple script using AltGr not working

I'm trying to remap the ñ key to work like AltGr+4 to produce the tilde (~) sign on the Spanish keyboard. I made a very simple script: ñ:: send <^>!4 When I hit the ñ I get a bip sound and ...
-5
votes
0answers
94 views

Convert if instr substr [closed]

I long time back I made a program in AutoHotKey and realeased it to the world. Role on a few years, OS reboots, poor code management etc and 'poof' my source was gone. Rather than rewrite it in AHK I ...
1
vote
1answer
32 views

AHK don't consume input?

I have another program listening to ctrl alt shift numpaddiv; but autohotkey consumes the input. How can I tell autohotkey to not consume it? ^!+NumPadDiv:: Run, log_base_timestamp.py ,,Hide ...
0
votes
2answers
26 views

Switching between multiple sets of remaps in autohotkey

Basically what I'm trying to do is switch between different keyboard layouts by using different hotkeys. So when I press ^+!F4:: these keys are remapped d::Space f::j j::k k::l and doing this ...
-1
votes
0answers
30 views

In AutoHotKey I need to convert 4 byte emory into float

I need a way to convert a 4 byte value in to float but the only thing I could find is doing this in C or C++ or C# and I dont know any of those languages. So can anyone help me do this by presenting a ...
-1
votes
1answer
23 views

Autohotkey : bind fast double pression on a key by a combination CTRL + Key

That's for a game. I would like when I press fastly 2 times a key, A for example, to simulate CTRL + A. I'd like to be able to parameter the time in ms of the interval between key pression. How can ...
0
votes
1answer
71 views

AutoHotKey Key Combinations (remap) for key modifiers

I want to change the use of Ctrl to Spacebar for three commands in a game but not for everything cause then I can't use space to communicate. The normal commands are Ctrl+q, Ctrl+w, Ctrl+e, Ctrl+r ...
0
votes
2answers
29 views

How to determine whether colour is within a range of shades

I am not sure if this is possible as I have been looking for a few hours and cant find what I am looking for. What i am doing is taking a color from a game panel which is semi translucent so the ...
0
votes
1answer
28 views

autohotkey partial window title match (without ahk class)

I would like to add partial window title matching to #IfWinActive. For example to match any notepad window, regardless wether the title is "Untitled - Notepad" or "MyFile - Notepad" This should be ...
0
votes
0answers
70 views

Why does script stop working and need to be reloaded?

I have a script that I use to open Firefox that contains customized shortcuts and that closes when I close the browser. Lately when I first open it and try to use a shortcut, it does not work until I ...
1
vote
1answer
42 views

AutoHotKey: Getting the last key that was pressed

I'd like to get the last key that was pressed by the user. I'm not talking about a hotkey; just a normal keypress. If possible, I'd also like to have keys that AHK typed using SendInput be included. ...
1
vote
1answer
24 views

Title Case in AutoHotkey

Is it possible to transform the text in the Clipboard in a Title Case form? For example if the text in the clipboard is "The quick brown fox" then the script will have to transform it into: "The ...
0
votes
0answers
39 views

FileDelete Does not Delete file. Why Not?

I create 2 temporary files in \tmp within windows xp. At the end of the script I use FileDelete to delete the files like this: FileDelete, C:\tmp\clip.? The files are never deleted, they are not ...
1
vote
0answers
71 views

How to star a Spotify song with Autohotkey while it's minimized?

How to star a Spotify song while it's minimized? Okay so the Spotify application on Windows does not have inbuilt support for global hotkeys, and very basic hotkeys even when the application window ...
0
votes
1answer
77 views

Application Automation with AutoHotkey while Using the Computer

It is possible to create an AutoHotkey script that will allow me to automate a task of an application, such refreshing of tabs on a web browser, which in the other side is I am using the computer? For ...
0
votes
1answer
26 views

Autohotkey map Win-Z to CTRL-SHIFT-f

I tried to bind the key-combination CTRL-SHIFT-f to WIN-z with the following command in the autohotkey configuration file: z::Send ^{Shift}/ But this does not work. It seems to me, the not all three ...
1
vote
1answer
63 views

How to run two scripts at once autohotkey?

Is it possible to have a loop playing throughout the script, while also continuing to the rest of the script. i.e. Loop { Send {Volume_Up 100} } SoundBeep, 1000 So in the above example the idea ...
0
votes
0answers
20 views

AHK_L Com Excel TextToColumns

I need some help getting my script to work with AHK_L COM Excel on TextToColumns. I've looked around but can't seem to locate enough examples to get me going. When I have run my VBA macro this is ...
0
votes
1answer
35 views

How do I get the date and time from my computer with Autohotkey

How do I get the date and time? The tutorial seems to be a bit wacky. Basically, I want the date and time to be recorded to a file when I press the button C. I think the following is correct: ...
0
votes
1answer
31 views

Looking for a way to track user actions to write script in Autohotkey

I'm starting to learn how to use AutoHotKey. So far i've written a script that launches the EvE online client and logs in my account. I've been searching for a way to track all my actions while in ...
1
vote
2answers
25 views

milisecond time in ahk

I'm looking for a way to save timestamps to the millisecond in ahk. FormatTime, stamp, , HH:mm:ss FileAppend, ( %stamp%,`n ), C:\%thefilename%.txt The above ...
0
votes
1answer
23 views

Time-stamped file recording joystick button presses

This is for an experiment we are running in our lab. First the script asks for a participant number and creates a file in C: . During the experiment a participant with a gamepad presses a single ...
0
votes
1answer
30 views

script to use Left Click as Left Shift does not work correctly

I've search AHK forums but couldn't solution. The script I found on AHK to use LShift as LButton does not work correctly..when press & hold left shift and move the mouse pointer, it can't copy ...
0
votes
1answer
37 views

Autohotkey: I'm unable to make a script for pressing 2 keys with a delay beteween them

Well i want to make a script with the objetive: 3{DOWN} key, and later hold or quickly press Z x3, and loop all that. I have been trying to work with loop command but i just can't, im new with ...
-3
votes
0answers
50 views

Workaround for programs that won't let you paste into them? [closed]

Throughout my short computer using career I've noticed that some types of programs prevent you from copy-pasting into them using ctrl-V. For instance, a fair number of cd key entry windows seemed to ...

1 2 3 4 5 14