Scripts and Functions (v2) • Re: UIA v2
@cgx5871 Is line 2519 wrong? Func Click()} else if ClickCount > 9 {SleepTime := cCount, cCount := 1}Should SleepTime := ClickCount ?It is not wrong, cCount == ClickCount. Although using the...
View ArticleAsk for Help (v1) • Re: Double tap and triple tap non-modifier keys
I understand your part about touch typing now. I think I will settle for using modifier keys only for double and triple press. Thank you for your time and help.Statistics: Posted by Joey5 — Today, 11:08
View ArticlePedir Ayuda • Re: Restaurar Icono de Carpeta Predeterminado
Hola: Para más ayuda, necesitaría que subas el código tal cual lo usaste —encerralo entre las etiquetas "code" para que se visualice correctamente— y que indiques qué funcionó —por ejemplo, si abrió...
View ArticleAsk for Help (v2) • Re: Create tooltips for menu items (in AHK v2)?
Cool, thanks a lot!Statistics: Posted by michaelbeijer — 46 minutes ago
View ArticleAsk for Help (v2) • Re: about Map(), Object() what different?
One thing worth noting is that the choice doesn't have to be about Maps vs Object Literals. While Maps are defined by keys and values, Maps can have properties too. See below.CODE: Auto := Map('Make',...
View ArticleScripts and Functions (v2) • Re: Easy OCR
Love this! Thank you! I ALMOST have it working for what I need. I am NOT a developer. But, I can often take existing code and tweak it a bit I need to go to a specific coordinate on the screen. I have...
View ArticleAsk for Help (v1) • Re: sorting files by folder path
Ideas are below.CODE: #Requires AutoHotkey v1.1.33#SingleInstancespecialPath := "C:\Windows|C:\Windows\System32"regEx := "(" StrReplace(specialPath, "\", "\\") ")"Loop { WinWaitActive ahk_class...
View ArticleAsk for Help (v1) • Re: Hotstring not triggered by Enter as it usually does...
I'm confused on how I can replace the code in the subroutine, could you please clear that for me?CODE: ::btw::by the way$Enter::send, {enter}Sleep 50sendMsg("hello world")ReturnsendMsg(msg) { Send ^a...
View ArticleSuggestions on Documentation Improvements • Built-in Classes
@Ragnar Would you be willing to add an entry to the documentation index for Built-in Classes so that I can find it by searching "class..". Perhaps "classes (built-in)"? I often look for that page but...
View ArticleAsk for Help (v1) • Re: How to get tooltip for a menu
Thank you. In other words, you need multi-threading (via AHK_H) to make it work.Statistics: Posted by iPhilip — 12 minutes ago
View ArticleScripts and Functions (v2) • Re: SendMessage to Totoal Commander [AHK V2]
3. Send Commands with Parameters ! Only tested for CD now.With below script, one can set path in TC left or right tab.CODE: ;https://www.ghisler.ch/board/viewtopic.php?p=277574#256573/*The complete...
View ArticleAsk for Help (v2) • Get the return value from TC by SendMessage
I've managed to SendMessage to Total Commander (TC) for different senarios.viewtopic.php?f=83&t=124670&p=554090#p554090But still I can not Get the return value from TC.Below is the description...
View ArticleAsk for Help (v1) • Re: trigger a ctrl command every sunset
Realized since I built in the check for change in day, it should only send a max of 1 request per day. Also missed adding the following CODE: dateToday := A_DD otherwise it will never change to the...
View ArticleIch brauche Hilfe • Re: Abfrage der Network-Adapter
Hi,vielleicht über Powershell:CODE: #NoEnv#Singleinstance ForceLANoderWLAN()LANoderWLAN(){Clip := ClipboardAllRunWait,% "Powershell Get-NetConnectionProfile | Select-Object InterfaceAlias |...
View ArticleAsk for Help (v1) • Trying to improve this ctrl F search function
I use this search function to jump to specific text on chrome pages. Works great for jumping to a specific button to press after with enter or to paste into an edit box or whatever. Looking for ways...
View ArticleAsk for Help (v1) • Re: Hotstrings() to call function
Hi, I'm trying to do the same with v2 but I get an Error: Too many parameters passed to function.This is my code:CODE: Hotstring(":?oX:" newHotstring, paste.Bind(path))What's wrong?Thank you.CODE:...
View ArticleAsk for Help (v2) • Re: Get the return value from TC by SendMessage
It is supposed to set a message receiver. CODE: AcSide:=TC_GetActiveSide()MsgBox AcSideTC_GetActiveSide(){ ;https://wincmd.ru/forum/viewtopic.php?p=110848&sid=0dfde01723b39e508e96d62c00a7a9b5 If...
View ArticleScripts and Functions (v1) • Re: A fix for Windows 10 invisible borders (and...
A slightly improved jimhoyle's script.What did you improve?Statistics: Posted by Skrell — Today, 11:22
View ArticleGaming • Tiberian Sun WASD Solution.
Good Day!C&C Tiberian Sun has no keys to scroll map. Only RButton + MouseMove or edge scrolling. It is not comfortable.Help me please make a script that will [hold down the right mouse button and...
View ArticleAsk for Help (v1) • Re: Trying to improve this ctrl F search function
Mine is below.CODE: #Requires AutoHotkey v1.1.35#If WinActive("ahk_exe chrome.exe")^F3::chromeFind("us")#IfchromeFind(str) { If WinActive("ahk_exe chrome.exe") { Send ^f SendInput % "{Text}" str "`n"...
View Article