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

I'm trying to spam 'q' in game but only if some pixels are on-screen as condition, but I'm having a problem with it being super laggy when I hold down 'q' for a long period of time to spam it. And ...
Automage's user avatar
  • 103
1 vote
1 answer
109 views

I am able to get the items of a SysListView321 using ControlGet: ControlGet, OutputVar, List,, SysListView321, Options ahk_class #32770 ahk_exe Ditto.exe Console(OutputVar) Console() outputs: ...
Ralf_Reddings's user avatar
0 votes
1 answer
937 views

I don't know what happens but I cant get the AHK to use show clipboard content. #5::MsgBox, Clipboard / Error: Function calls require a space or "(". Use comma only between parameters. #5::...
user647314's user avatar
0 votes
0 answers
117 views

As a result 3-4 identical scripts may hang in the tray, how can you fix this? Here is the upper part of the script: `SetWorkingDir %A_ScriptDir% #SingleInstance Force #Persistent #NoEnv #...
gel kayano's user avatar
0 votes
2 answers
396 views

I just began AutoHotKeys today, and am still unfamiliar with how most of it works, but I have been able to successfully create a host of auto-replace hotkeys. I am now trying for my first more ...
Danny Linton's user avatar
0 votes
1 answer
277 views

I created a script that uses whatsapp api, it takes selected/clipboard number and builds the URL from there. I managed to make that work ( i'm new to AH ) but I'm not being able to trim spaces ( which ...
Tomas Buzeta's user avatar
0 votes
1 answer
30 views

I want to use AutoHotKey to do COPY, CUT and PASTE On my Keyboard there 5 keys called A, B, C, D, E on top of F2-F6 I want to use A for COPY B for CUT C for PASTE I used Key History to identify these ...
asmgx's user avatar
  • 8,150
1 vote
2 answers
3k views

I want to automate the running of my AutoHotkey toolkit using Task Scheduler because the "Startup" folder also throws up a CMD screen when it starts, and this method does not. However, I ...
YorSubs's user avatar
  • 4,238
0 votes
1 answer
187 views

When I write in Polish I have to use right Alt (AltGr) to write special symbols. Sometimes when the symbol was at the end of the word I would press space before releasing alt, which would not produce ...
Wisent's user avatar
  • 1
-1 votes
1 answer
287 views

I'm new here, hope I'm doing things the right way! I want to dl this URL, I've done it before (with help) but now I accidentally deleted my source, and I can't remember where I got help or what the ...
Bobak's user avatar
  • 1
4 votes
1 answer
618 views

I am using the following AutoHotkey script originally written by Laszlo to detect single, multiple, short and long presses of the Ctrl key: Morse(timeout = 150) { ; tout := timeout/1000 key := ...
Afshin Davoudy's user avatar
3 votes
1 answer
2k views

How do I create a POST Rest API request using AutoHotKey V2? Every existing script I can find on the internet applies only to AutoHotKey V1. Are there existing utility scripts that faciliate this ...
Desk Reference's user avatar
1 vote
1 answer
129 views

How can I send a text with AutoHotKey that results text output as below ? Alfa Bravo Charlie Delta I have tried to use this operation: text = ( Alfa Bravo Charlie Delta ) Send % text ...
EquipDev's user avatar
  • 6,051
0 votes
0 answers
520 views

My ASUS G553Q whatever has a Microphone Mute key, which doesn't function correctly anymore. I want to use AHK to intercept the key and replace it with F24, which I'll bind to mute in discord, the ...
Midge's user avatar
  • 1
0 votes
1 answer
143 views

Is there a way to specify paste directly after right mouse click in AutoHotkey v2? Current code <^z::Send, {RButton}{p} Problem / There are multiple shortcuts (p) in the right-clicked menu Other / ...
re1's user avatar
  • 467
1 vote
0 answers
72 views

I would like to do this : if Ctrl was pressed down for more than 200ms (long press) It doesn't anything if the key was pressed down for less than 200ms (short press), send("a") I got these : ...
yfjuu 0's user avatar
  • 19
1 vote
2 answers
257 views

thanks in advance for your valuable and diligent assistance ! I have a little Qwerty laptop and I'm trying to remap unaccented vowels into accented ones using AHK (AutohotKey). ISSUE #1: For example, ...
Hillyeh Guirreh's user avatar
0 votes
0 answers
111 views

I'd like to convert this AHK script into a Python script, but I really don't understand this suspend on AHK, can somebody help please? LButton:: Send {WheelDown} return F2::Suspend Here's my Python ...
Audacity Shop's user avatar
0 votes
1 answer
242 views

Recently got new Windows 11 computer, can't get used to the "Tap twice and drag to multi-select" touchpad setting, on my PC it starts selecting just when I'm trying to move mouse right after ...
Peheje's user avatar
  • 14.4k
2 votes
1 answer
103 views

Here is the code: *Lalt::return #if GetKeyState("Lalt", "P") a:: b:: if GetKeyState("shift", "P") send ^+{%A_ThisHotkey%} else ...
Harry_Cyrus's user avatar
1 vote
2 answers
453 views

^!a:: hwnd := WinExist("A") for Window in ComObjCreate("Shell.Application").Windows if (window.hwnd==hwnd) { Selection := Window.Document....
medukia's user avatar
  • 43
0 votes
2 answers
755 views

I want to open a folder in Visual Studio Code when I press a button. Can I bind this with AutoHotkey v1?
Sem's user avatar
  • 15
0 votes
1 answer
66 views

I want while holding down "AltGr " then(and) "SC033" it stills doing undo, undo, undo ... until release "SC033". as for <^>!p the same thing for <^>!SC033 ...
yfjuu 6's user avatar
  • 25
0 votes
1 answer
102 views

I have an AutoHotkey file running on a Google Drive folder on a remote machine and i'm trying to make it reload itself whenever it detect it got modified. Is there a method to subscribe to file ...
Simon's user avatar
  • 1
0 votes
1 answer
50 views

#If WinActive("Program Manager ahk_class Progman") ~LButton:: CoordMode, Mouse, screen MouseGetPos, x,y if (x > 100 and x < 200 and y > 300 and y < 400){ SoundBeep, 1000 } #...
yfjuu 6's user avatar
  • 25

1 2 3
4
5
95