Ask for Help (v1) • Re: Assign values to terms found in variable
How do I specify negative points to take away from the total? Putting -5 does not result in a subtraction.Statistics: Posted by Rikk03 — Today, 07:23
View ArticleAsk for Help (v2) • Re: What is the correct way to pass NULL to a DllCall...
If I could add a bit more to what @just me mentioned, when you read the Types of Arguments and Return Values section in the DllCall documentation regarding Ptr, you'll find the following...
View ArticleAsk for Help (v2) • Re: add a line feed
thank you warlord.......so much to relearn in v2, audio production by trade, not a coder but I'm getting there.Statistics: Posted by sbrady19 — Today, 07:59
View ArticleGaming Help (v1) • Re: A script that fills the function of the mouse wheel in...
Not sure about any other issues. But I believe using #IfWinActive Recoil you need to turn off context sensitivity by placing just #IfWinActive at the end of your...
View ArticleAsk for Help (v2) • Re: loop a folder
boiler, I got a new computer at work in Dec. I learned you can install both v1 & v2, so I did. I was getting errors on some of my v1 scripts. Why would that happen. ZERO errors on old computer...
View ArticleСкрипты для Игр • Re: По нажатию лобой клавиши менять переменную
Попробуй подумать в таком направлении:Повторное нажатие XButton2 симулирует нажатие какой то другой игровой кнопки. Это может быть как весьма значимая кнопка (функция в игре), так и абсолютно...
View ArticleScripts and Functions (v1) • Re: UIAutomation with a focus on Chrome
Hi @Descolada Thanks for reply and point my error.However, after doing so, the script exit without error but still no item be selected. Any better idea? Please help. Statistics: Posted by chamber_wang...
View ArticleAsk for Help (v1) • Re: StrSplit() Case-insensitive?
And it's easily verifiable:CODE: for Each, Segment in StrSplit("THISxISxNOTxSPLIT.XTHISXISXSPLIT", "X")MsgBox, % Segment...which results in the following lines shown in individual MsgBoxes:CODE:...
View ArticleGeneral Discussion • Re: How to add my AutoHotKeys App in to Microsoft Store ?
Hi again,Some reflections / conclusions after examining the third, recommended path: MSIX package preparation.Long story short: I'm still unsuccessful. Any help is appreciated.@Descolada: could you...
View ArticleGeneral Discussion • Re: Comcast Business ISP Blocking AHK Website
I work at a small print shop. The first thing I did was inquire with my Sup, whom I play WoW and such with from time to time, since "he is the IT" - he is the lead artist. He says there is nothing of...
View ArticleAsk for Help (v2) • Re: generate Outlook email
He did not say it was replaced by ComObj. He said it was replaced by ComObject.Statistics: Posted by boiler — Today, 08:00
View ArticleAsk for Help (v2) • Can't figure out warning "This variable appears to...
I am trying to replace certain letters with others while pressing F2, the code seems fine and all, but on line 34 the interpreter throws this warning: "This variable appears to never be assigned a...
View ArticleAsk for Help (v2) • Re: Can't figure out warning "This variable appears...
Input is not a v2 function. And it appears you just tried making up syntax for it. Was this code generated by ChatGPT?See InputHook.Statistics: Posted by boiler — Today, 08:11
View ArticleAsk for Help (v2) • Re: Entire Unparsed A_Args?
If you don't want to reassemble the individual arguments, you can use the command line and just strip the switches from it. Why rejoin anyway? What are you trying to achieve? What parser problem...
View ArticleBug Reports • [2.1 alpha8] Question re Array.Pop() and unset?
In the following code:CODE: a := [10,,30]b := [20,,40]c := [30,,]d := [,,5]a.Default := 99a3 := a.Pop(), a2 := a.Pop()b3 := b.Pop(), b2 := b.Pop()MsgBox('' . 'a2 is set: ' IsSet(a2) '`n' ; 1 . 'a2...
View ArticleПомощь • Re: Скрипт не всегда срабатывает
@marusa122Потому что ты сделала результат работы ControlGet условием для работы всего остального кода.Если окно свёрнуто, или неактивно, тогда соответственно ControlGet НЕ обнаруживает кнопку -...
View ArticleAsk for Help (v2) • Re: close all open desktop windows
still not workingCloseAll(*){GroupAdd ExplorerGroup, ahk_exe Explorer.exeWinClose ahk_group ExplorerGroup}Statistics: Posted by sbrady19 — 45 minutes ago
View ArticleAsk for Help (v1) • Re: Hotstring to trigger actions by long press last letter.
Hallo,try:CODE: :*:vare::Time := HoldLastCharacter()Switch { ; the first case that evaluates to True is executedCase Time >= 2200:msgbox, action 3 triggeredCase Time >= 1200:msgbox, action 2...
View ArticleAsk for Help (v1) • need script termination shortcut ,using both...
I need script termination shortcut.CODE: ^Esc::ExitAppExitAppAt the end of script I have both of these two commands.^Esc::ExitApp works to terminate the script, but then ExitApp is not triggered and...
View ArticleAsk for Help (v2) • Re: LWin::Send behaviour under V2?
Seems you're onto something there, @boiler... If I remove any references to LWin or <#, then my first hotkey works... Though none of the other Win+key combinations do, so something of a moot...
View Article