Search found 22 matches

by Cromax
05 Dec 2023, 21:34
Forum: Visual Studio Code
Topic: ahkv2 vs code edit script tray icon not working
Replies: 1
Views: 603

Re: ahkv2 vs code edit script tray icon not working

NVM i fixed it by rebrowsing to code.exe from dash path even though it was same path and now its working.. and theysay ai wil take over the world lmao
by Cromax
05 Dec 2023, 21:22
Forum: Visual Studio Code
Topic: ahkv2 vs code edit script tray icon not working
Replies: 1
Views: 603

ahkv2 vs code edit script tray icon not working

Edit command on tray icon is not working for vs code on v2 on v1 is working normally.. on v2 edit script works on an other text editor like sublime notepad but not on vs code edit command is set up in registry..funny thing it works from right click menu on script but not on tray icon.. help pls
by Cromax
11 Apr 2023, 21:27
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

if anyone still has issues for me solution was #MenuMaskKey vkFF bc windows has shortcuts ctrl+something and if you use it in script it gets stuck and breaks the script..
by Cromax
31 Mar 2023, 20:22
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

nope still gets stuck
by Cromax
30 Mar 2023, 20:54
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

i found whats wrong.. it happens when mouse keys are pressed together with other hotkeys and Sendmode input is used.. i guess i am stuck in send mode event
by Cromax
28 Mar 2023, 22:46
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

yeah will try that also.. ty for suggestion
by Cromax
28 Mar 2023, 20:20
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

still getting stuck and i dunno anymore
by Cromax
21 Mar 2023, 06:32
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

it was #maxthreadsperhotkey 2
by Cromax
20 Mar 2023, 23:41
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

i dont understand why but first what you posted as alone script it works perfectly but when i put in my own script it beeps 2 times for key pressed and key up.. as for loops i have issue with it, when i want break out with condition if key not pressed it gets stuck and its inconsistent
by Cromax
20 Mar 2023, 22:28
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

#Include <TapHoldManager> #Include <ShinsImageScanClass> #SingleInstance Force #NoEnv #Persistent #InstallKeybdHook #InstallMouseHook #UseHook, On #MaxThreadsperHotkey 2 #HotkeyModifierTimeout 200 #MaxHotkeysPerInterval 200 #Keyhistory 10 SetTitleMatchMode, 2 DetectHiddenWindows, On SendMode, Event...
by Cromax
20 Mar 2023, 22:18
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

issue is basically explained here https://www.reddit.com/r/AutoHotkey/comments/fd80vl/bug_sendmode_input_causes_inconsistent_and_stuck/ i have same problem.. and sendmode play doesnt work in wow
by Cromax
20 Mar 2023, 22:12
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

Re: a down getting stuck Topic is solved

Hello, I like how you've posted a script, but how about one that the reader can run to demonstrate the problem that you are having? SetTimer is above KeyWait? Huh? 1. Post a real script. 2. Describe what the script does when you run it. 3. Describe what the script should do. I think I would skip al...
by Cromax
20 Mar 2023, 20:24
Forum: Gaming Help (v1)
Topic: a down getting stuck Topic is solved
Replies: 15
Views: 1169

a down getting stuck Topic is solved

#SingleInstance Force #NoEnv #Persistent #InstallKeybdHook #InstallMouseHook #UseHook, On #MaxThreadsperHotkey 2 #HotkeyModifierTimeout 200 #MaxHotkeysPerInterval 200 #Keyhistory 10 SetTitleMatchMode, 2 DetectHiddenWindows, On SendMode, Input SetWorkingDir %A_ScriptDir% SetBatchLines, -1 SetControl...
by Cromax
07 Feb 2023, 20:16
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

y i think i found culprit not enough breakchecks before initial 2 pixelsearch
by Cromax
07 Feb 2023, 19:19
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

#Include D:\My Documents\Autohotkey\Lib\TapHoldManager.ahk #SingleInstance Force #NoEnv #Persistent #InstallKeybdHook #InstallMouseHook #UseHook, On #MaxThreadsperHotkey 2 #Keyhistory 50 SetTitleMatchMode, 2 DetectHiddenWindows, On SendMode, Event SetWorkingDir %A_ScriptDir% SetBatchLines, -1 SetCo...
by Cromax
07 Feb 2023, 18:05
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

yeah just put under last pixelsearch If (ErrorLevel = 0) i deleted it accidentally with comment
by Cromax
07 Feb 2023, 17:20
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

so how to break set timer loop if key 6 isnt pressed if breakcheck6 obviously doesnt work
by Cromax
07 Feb 2023, 17:10
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

You have no loop in the last script you posted. You have a SetTimer with a negative number for the period parameter, which runs the routine only once. You have nothing else that would cause it to loop. ok makes sense but why breakcheck doesnt exits timer thread if not pressed even though when you p...
by Cromax
07 Feb 2023, 16:59
Forum: Gaming Help (v1)
Topic: i am too dumb to find out why its in infinite loop
Replies: 13
Views: 756

Re: i am too dumb to find out why its in infinite loop

#Include D:\My Documents\Autohotkey\Lib\TapHoldManager.ahk #SingleInstance Force #NoEnv #Persistent #InstallKeybdHook #InstallMouseHook #UseHook, On #MaxThreadsperHotkey 2 #Keyhistory 50 SetTitleMatchMode, 2 DetectHiddenWindows, On SendMode, Event SetWorkingDir %A_ScriptDir% SetBatchLines, -1 SetCo...

Go to advanced search