Skip to main content
Filter by
Sorted by
Tagged with
0 votes
3 answers
128 views

I'm basing my attempts on this answer but I'm having no luck. I'm running it from AutoHotkey on Windows, but I'm also unable to get it to run from a command line. The default folder is set with this ...
DaveF's user avatar
  • 285
0 votes
1 answer
45 views

I have a problem i've lingering on for a whole day. So i have this program that has a config file (need one). That ofc keeps all the settings in it for whenever the program is closed. Tho i have a ...
Warre Geerts's user avatar
0 votes
0 answers
58 views

I have the following code, I am trying to implement a "a tap and hold" feature, where if I tap a for less than 300 ms, its supposed to fire the if block or if I hold down a, the else block ...
Ralf_Reddings's user avatar
0 votes
0 answers
74 views

I´m new to Vim and I want to use autohotkey to make it so that, if I open Vim on PowerShell, the Esc key is Remapped to the CapsLock key so that I can change from Insert to Visual Mode faster. I tried ...
Rafael Bravo's user avatar
0 votes
1 answer
190 views

How can I make a script to toggle between Maximize/Restore for the current (active) window in autohotkey? e.g. like this, but toggle: #x::WinMaximize, A
sashoalm's user avatar
  • 80.5k
-2 votes
2 answers
60 views

My code: #Requires AutoHotkey v2.0+ TextToSend := FileRead("textToSend.txt") lines := StrSplit(TextToSend, "\n") :*:st::{ Loop { SetKeyDelay 10000 ...
Ooker's user avatar
  • 3,404
-2 votes
1 answer
109 views

I tried many ways to fix it , but i couldn't . JSON : jsonData := '{"select": {"fields": [{"fieldPath": "name1"}]}, "from": [{"collectionId":...
Ahmed Alsmairy's user avatar
-1 votes
2 answers
94 views

AUTOHOTKEY v2.0.18 I have 2 codes. One works flawlessly and the other, which is almost exactly the same, does not. Can you identify where I'm going wrong here please? WORKING - TEST CODE TO GET IT TO ...
itz_reecey's user avatar
0 votes
1 answer
48 views

I want to use the AltGr+; combination to produce the dollar sign using AutoHotKey v2.0. Unfortunately I cannot seem to get it to work after several failed tries. My keyboard has the actual AltGr key ...
Mark's user avatar
  • 1
1 vote
1 answer
63 views

I have been using Autohotkey and many triggers involving the Capslock key on my laptop for a long time. I am also using Synergy v1 from Symless to share mouse and keyboard from my desktop computer ...
Sandro's user avatar
  • 463
0 votes
1 answer
32 views

There is a script #IfWinActive, ahk_class illustrator RWin::Send, !frf The menu commands looks like this ... exportDocs fitAndCenter fitSelection fitAndScale ... Cuurently the script selects ...
rozerro's user avatar
  • 7,378
-1 votes
1 answer
192 views

Why is this code randomly failing? It will work consistently and then freezup(either with the window maximized or minimized) at some seemingly random time, requiring me to select 'any window' in order ...
Koko3433's user avatar
0 votes
2 answers
92 views

I want to make a Program which asks the user how many times the inner loop should loop. It should also ask only once and then run indefinitely with the number of loops the user set. Here is the code: ...
Maximilian Wonschik's user avatar
0 votes
1 answer
134 views

ok so I have this code #Requires AutoHotkey v2.0 global MyGui := "" global uNID := "", Password := "" global EditUsername := "", EditPassword := "" ...
Lucas Hicken's user avatar
0 votes
2 answers
118 views

I want to build concatenated strings in AHK v. 1.1 from seperate strings that I select consecutively with my mouse by pressing (down) Caps lock + y each time. When I'm done selecting all text snippets,...
Pingui's user avatar
  • 1,506
0 votes
1 answer
67 views

I need to remap certain keys so that CapsLock + "ijkl" would result in arrow keys without actually toggling CapsLock on. Standard practice. ChatGPT gave me the following code which worked as ...
Roman's user avatar
  • 3
1 vote
1 answer
154 views

My keyboard broke, and some keys are not working. To overcome this situation, I wrote a simple script that makes the letter 'q' act as 'Tab' when I hold down 'Shift': +q::Send "{Tab}" The ...
Salva_Karaka's user avatar
0 votes
1 answer
55 views

I've been trying to make a script where at specific minutes every hours, something happen. I've tried to add a loop so it can always check if it is now at the right minute of the hour. I tested the ...
Lxr sed's user avatar
0 votes
2 answers
128 views

In Windows 10, I use the Dvorak keyboard layout. That means common keyboard shortcuts are in different places than usual, e.g. ctrl+v and ctrl+w are right next to each other, and x/c/v are not ...
GG2's user avatar
  • 181
0 votes
1 answer
157 views

Good day, I'm trying to create a script for AutoHotKey (AHK) which would show in a GUI multiple digital clocks (with different time zones). I already created a simple script with 3 different clocks ...
Neelfinity's user avatar
0 votes
1 answer
577 views

Being new to AHK v2, we asked claude ai to generate some code, as it appears to be trained on AHK V2 based on some AHK expert videos released a couple of weeks ago. We're basically trying to click on ...
Wonka's user avatar
  • 8,754
0 votes
1 answer
127 views

I want to convert this ahk liabrary (v1) file to v2 version. https://github.com/jixiuf/my_autohotkey_scripts/blob/master/ahk_scripts/emacs-key-sequence.ahk Because,I'm a new learner,I do not ...
user26006654's user avatar
0 votes
1 answer
152 views

Lets say I have x key, and I want use it as a "modifier" so that I can combine it with other hotkeys, like so: x & and y x & and w x & and z In order to do this, I need to use ~...
Ralf_Reddings's user avatar
-1 votes
1 answer
55 views

Is it possible to join these 2 script? This to use my remote control RC Modelism and the helmet VR oculus quest 2 I would like to use that the H and B keys on the VR Oculus Quest helmet and on the ...
Allan Tori's user avatar
0 votes
1 answer
49 views

I do not use the trackpad's 2 buttons. I do clicking by tap to click or clicking the whole trackpad. So I want to map the 2 buttons to something else. Autohotkey registers these 2 buttons as LButton ...
lucahuy's user avatar
  • 800

1
2
3 4 5
95