Ask for Help (v2) • Re: Imagesearch shades of variation for a very small icon
Rather than using different levels of variation to see which one is being displayed, you should have two different reference images and search with a very low level of variation (possibly 0) for each...
View ArticleScripts and Functions (v2) • Re: AutoCorrect for v2
@kunkel321 - I have been going through the process of converting my _HS() hotstrings to call your f() function. One of the major problems is sorting. Do you have any recommendations in terms of how to...
View ArticleAsk for Help (v2) • Re: How to sort Array by key value in the embedded Map...
Yes, "natural sort" looks good!Statistics: Posted by mikeyww — Today, 18:28
View ArticleAsk for Help (v1) • Re: Launch program / resize / scroll resized window / set...
Perhaps others know the way here.Statistics: Posted by mikeyww — Today, 18:29
View ArticleAsk for Help (v2) • Please help,The problem of matching two strings
str1 :="(Aaa 1 2Bbb 1 23FFF 1 367Aaa 2 1032Bbb 1 532.0GGG 1 863.89eee 1 98CCC 1 232.0)"str2 := "(Aaa 2 60Ddd 2 22.08Ddd 2 12.78CCC 2 626.8FFF 5 37Ddd 2 45.34Aaa 2 360.01CCC 9 6.8Eee 2 456)"Result:aaa...
View ArticlePulovers Macro Creator • Re: Is Pause - Random Delay Option broken?
I did that, that's why i said i believe it does not work properly upon export. But then again, i just started ahk/pulover 3 days ago and i may have done something wrong on export and overall i don't...
View ArticleAsk for Help (v1) • Excel data transfer Script not working
Hi everyone, I am working on another Excel-data transfer script, but this time I have complete lost it... and need your help. I want to create a script that automates the process of transferring the...
View ArticleAsk for Help (v2) • Re: how could I get a script to automatically reload upon...
It is also of some concern that message processing in the application must return True to the operating system."An application should return TRUE if it processes this message."It doesn't specify what...
View ArticleAsk for Help (v2) • Re: Newbie simple SCROLL WHEEL TWICE help!
@FNUSA -- You posted in the v2 section, but you linked a thread containing v1 code. Which AHK version are you intending to use?Hey brother! I believe I downloaded v2 however I'll download anything,...
View ArticleScripts and Functions (v2) • Re: svgToHBITMAP.ah2 (AddPicture an SVG to Gui)
@iseahound The reason for the error lies in the return type.CODE: ComCall(48,ID2D1RenderTarget)assumes that the return type is HRESULT. The documentation page for that method states otherwise:CODE:...
View ArticleAsk for Help (v2) • Re: Key Hold to Run script question
Thank you much @awkwrd, here is what i am noticing now with the GetKeyState(key, "P"), the script doesn't keep running when the button is pressed. It stops at the end and the key has to be depressed...
View ArticleAsk for Help (v2) • Re: Help with InputHook + InputLevel
That's a lot of code to go through, much of which doesn't seem relevant to the actual issue. The post is more likely to get attention if you figure out the bare minimum of code that expresses what you...
View ArticleAsk for Help (v1) • Run a command, then run another when closing a process
Hey!I'm trying to run a command to do the following:Change resolutionWait 3 secondsRun example.exeThen wait untill example.exe is closed and Change resolution backAny help is appreciated! So far I...
View ArticleAsk for Help (v2) • Re: How to get a value of ListBox1 control here (conitnue)?
So you want to create a hotkey (ins::) to send the option selected in the popup. Try this:CODE: MyGui := Gui('AlwaysOnTop')MyGui.AddText(, 'Select your category')ListBox1 := MyGui.AddListBox('r6',...
View ArticleAsk for Help (v1) • Cmd Hide And Output/RunCmd
Hello, I need to enable the hidden windows command line. Execute the command, enter the password and confirm it. Finally get the output from the console to the variable.At first I did it like this and...
View ArticleAsk for Help (v1) • Re: Run a command, then run another when closing a process
HeyWhat resolution do you want to change to after closing the process?Statistics: Posted by ArkuS — Today, 19:37
View ArticlePedir Ayuda • Xoutput se cierra con mi código
Hola a todos, necesito de su vasta sabiduría... En una recreativa arcade uso este código siempre para cerrar Xpadder, abrir xoutput, correr el juego y luego al cerrar el juego que se cierre también...
View ArticleAsk for Help (v2) • Re: Cancel XButton2 "unclick"
See the documentation about custom combinations. The first script that I posted shows how to restore the button's native function when the button is released. We have now come full circle!Hi Mike, I...
View ArticleAsk for Help (v1) • Re: Problem with quotes
But your error message shows a line that is not actually in my script. Are you spotting the difference? Instead of editing the script, why not test it the way it is?I copied the script from your...
View ArticleAsk for Help (v1) • Re: Lock mouse movement to only allow horizontal movement...
Fixed:CODE: #Requires AutoHotkey v1~LShift::~LCtrl:: ToolTip mouse movement restricted. ClipCursor(A_ThisHotkey) KeyWait, % SubStr(A_ThisHotkey, 2) ClipCursor() ToolTipReturnClipCursor(hk := "") { if...
View Article