Ask for Help (v2) • Re: Passing GUI events to another GUI / letting GUI...
No, avoiding references to the GUI itself being passed indirectly back into the GUI (via an event handler or assigned property) is essential to avoid circular references. You can use bound functions...
View ArticleBug Reports • Re: WinTitle with multiple ahk_id uses only last one
@lmstearn I don't know what you're on about. I already explained why specifying ahk_id multiple times will not work.Statistics: Posted by lexikos — 26 minutes ago
View ArticleAsk for Help (v1) • Re: Problems with GUI button names
and this works with long names , greater than 63 characters , but works not when you have space in filename ( then problem in > v%name_no_ext% )CODE: dir = %A_ScriptDir%Gui,2:defaultGui,2: Font,...
View ArticleScripts and Functions (v1) • Re: [Script] KeypressOSD - Display key press on...
will there be an update for ahk v2?Statistics: Posted by MerlinSilk — 15 minutes ago
View ArticleScripts and Functions (v2) • Re: LibQurl (a libcurl wrapper for AHKv2)
Added ~50 untested DllCalls wrapping every non-depreciated libcurl option. As far as I am aware, this is the only full libcurl wrap for AHKv2 in existence.Each untested method is clearly marked as...
View ArticleAsk for Help (v2) • Re: CheckColor / WaitColor - Color names of HEX color
Instead of a bunch of if statements, you can use a Map:CODE: Color := 'Red' ; also test with 'WrongColor' or other color namesColorValues := Map('White', 0xFFFFFF, 'Black', 0x000000, 'Red', 0xFF0000,...
View ArticleAsk for Help (v1) • Plaqued by 'Expression too long' error
I am working on two functions, GetToolbar() and SetToolbar() to control Adobe Illustrator's toolbar panel in a much more efficient way and to implement features such as spring loaded tools, which...
View ArticleAsk for Help (v2) • Is it possible to determine the current line under the...
Hello,Is it possible to determine which line my mouse cursor is currently hovering over in a multi-line edit field?Thank youCODE: #Requires Autohotkey v2.0#SingleInstance ForceMessage :=...
View ArticleAsk for Help (v1) • Re: Plaqued by 'Expression too long' error
the issue you have here is not the size of the object, but the size of the argument you are trying to pass to the initial array assignment. There is a max string length that you can pass to the array...
View ArticleGaming Help (v1) • Re: Using AHK with the Nestopia gaming emulator
Thank you, "SetKeyDelay, 0,100" helped me.Statistics: Posted by nitsik — Today, 16:15
View ArticleAsk for Help (v2) • Trouble using old v2 scripts in the new v2
Used autohotkey many years. After you modified scripting, I haven't been able to write a script to do the following:Enter the word "Cheers, - then on the next line enter "Dave".Spent too much time...
View ArticleAsk for Help (v1) • FileMove Troubleshooting
I can't get the files to move with this script. It's not adding new lines to the CSV, either. I hope that it's not too messy. I have a few diagnostic commands in there that I've been using for...
View ArticleAsk for Help (v2) • Re: Trouble using old v2 scripts in the new v2
Welcome to this AutoHotkey forum!CODE: #Requires AutoHotkey v2.0F3:: { Send 'Cheers,' Send '`n' ; Send '{Down}' ; Send '`t' Send 'Dave'}Explained: SendStatistics: Posted by mikeyww — Today, 16:31
View ArticleAsk for Help (v1) • Re: FileMove Troubleshooting
Hello,Here is how I would approach the problem. Start with a new five-line test script to see if you can move a file from one directory to another. If that works, you can then expand the script.CODE:...
View ArticleAsk for Help (v1) • Mark emails as read in Outlook
HelloI am trying to mark emails as read in Outlook Desktop when I right click on an email in the email list.I tried:CODE: #If WinActive("ahk_exe outlook.exe")RButton::Send {LButton down}{LButton...
View ArticleAsk for Help (v1) • Re: Mark emails as read in Outlook
An idea is below.CODE: #Requires AutoHotkey v1.1.33.11#If WinActive("ahk_exe OUTLOOK.exe") && mouseOver("OutlookGrid1")~RButton Up::Sleep 200Send k ; Mark as readSoundBeep...
View ArticleIch brauche Hilfe • Re: Deutsche Hilfe für AHK v2 und v1
v1-Dokumentation an v1.1.37.02 angepasst.Mehr Details auf GitHubStatistics: Posted by Ragnar — Today, 15:13
View ArticleAsk for Help (v2) • Re: Array v1 to v2
Thank you very much!That really annoyed me. Like with a rental car. You know there's a reverse gear, just how do you put it in?Statistics: Posted by Rohwedder — Today, 15:35
View ArticleAsk for Help (v1) • Re: From RegExMatch to RegExReplace
But the dot is then at the beginning of the line and not at the end.Your needle is different than the one I posted. Notice the capture groupings. My needle places the dot before the LF, not after it...
View ArticleScripts and Functions (v2) • Re: Efficient notification of process closure...
@lexikos I remember that in the old forum I wrote a library using RegisterWaitForSingleObject with an ordinary AHK callback and you outlined the mistakes in that approach, mentioning machine code...
View Article