Ask for Help (v2) • moving e-mail to different folder help.
Hi Guys.I'm trying to get a code out of an e-mail, move it to another place and then move the mail to a different folder. I don't have any issues with getting the data out. However: Once I return to...
View ArticleПомощь • Узнать размер изображения
Как узнать размер изображения (Ширину и Высоту), если известен только путь к файлу?Statistics: Posted by cxrsad — Today, 10:18
View ArticleGaming Scripts (v1) • Default sound device switcher
Hi, I updated my super simple default sound device switch script to a GUI interface with config file. It uses a programm from nirsoft called soundvolumeview (but the command line version). The...
View ArticleAsk for Help (v1) • Re: How to determine if a hotkey or hotstring, etc is...
@Descolada Thank you so much, I will definitely try this out. Thanks for your time, I appreciate it!KellyStatistics: Posted by Kellyzkorner_NJ — Today, 10:28
View ArticleПомощь • Re: Узнать размер изображения
ahk V1 , откройте папку изображений и выберите несколько файлов изображений с помощью F3CODE: ;- open image folder and select some picture-files user mikeyww;- Как узнать размер изображения (Ширину и...
View ArticleScripts and Functions (v2) • Re: UIA v2
@Spitziused WaitElement(condition, timeOut)?Statistics: Posted by cgx5871 — Today, 10:35
View ArticleAsk for Help (v1) • Re: Using Regex with winactive
Thank you mikeyww.All is clear for me now. This is unfortunate that all #If directives must use same TitleMatchMode. I will have this in mind now. I think I will keep my original version with OR...
View ArticleSuggestions on Documentation Improvements • Re: SendMessage timeout
@just me I opened this thread exactly because I wanted (though not necessarily needed) to use an infinite timeout. I could ask the same question about WinWaitActive (or WinWait, or ...) - why should...
View ArticleAsk for Help (v1) • Re: Pixel Search help
i got it to actually hold E instead of tapping it but i dont think the pixel search is working because even when the pixel shows up it wotn let go of eStatistics: Posted by hoaxx — 26 minutes ago
View ArticlePedir Ayuda • Re: Restaurar Icono de Carpeta Predeterminado
Hola. Sigue sin funcionarme. Al ejecutarlo se abre la ventana propiedades de la primera subcarpeta, pero ahí se queda. Saludos.Statistics: Posted by cilniani — 7 minutes ago
View ArticleVisual Studio Code • Re: Quick tutorial for setting up VSCode for AHK
If you install AutoHotkey v2, it will ask you which editor to use the first time you attempt to edit a script. VS Code should be detected automatically, so you can select it from the list. This list...
View ArticleAsk for Help (v2) • Re: Gui_DropFiles - Get LV Row While Hoovering?
@just me I've already tried both options, but they are not as reliable as Activating the window. Some programs don't respond well.If you run the last script and compare the hovering (when dragging...
View ArticleAsk for Help (v1) • Re: Pre-checked checkbox?
Not sure if i understand what you mean by saying "Don’t create the GUI each time the hotkey is pressed". I have OK button for Gui, Submit and Gui, Destroy. As well as Cancel button which handles Gui,...
View ArticleAsk for Help (v2) • ClipCursor() with vertical axis help
Hey, noob here.This is ClipCursor(); it's for locking the mouse along certain lines.CODE: ClipCursor(confine:=true, x1:=0, y1:=0, x2:=1, y2:=1) {static rect := Buffer(16)if confine {NumPut("UInt", x1,...
View ArticleAsk for Help (v2) • Re: moving e-mail to different folder help.
Shouldn't it be "CVent Alerts" not just "CVent"? You could try this to see where it is failing to get a folder:Good catch.. I changed it, but forgot to update it.Nevertheless: Even after fixing things...
View ArticleAsk for Help (v2) • Creat Class called repeatedly?
CODE: MsgBox a.b._c._d._e.ValueMsgBox a.b._d._e.Valueclass a { class b { static _c{ get { return this } } static _d{ get { return this } } static _e{ get { return this } } static Value=> 345 }}I...
View ArticleAsk for Help (v2) • Opening and closing App.
First of all I would like to greet all users and moderators.With this message I am asking for support to solve a problem.For some time I have been using a script that allows me to close and open a...
View ArticleAsk for Help (v1) • Re: Enable "autohide taskbar" when app is in...
Ideas are below.CODE: #Requires AutoHotkey v1.1.35#PersistentProcess Priority,, BSetTimer Check, 1000Check:WinActive("A")WinGet procPath, ProcessPathWinGetClass winClassIf !InStr(procPath,...
View ArticleAsk for Help (v2) • v2 error
Since upgrading to v2 my script crashes on line 006. Any thoughts?Error: PCRE execution error.Specifically: -8---- C:\Program Files\AutoHotkey\UX\inc\identify.ahk003: {005: p := 1, count_1 := count_2...
View ArticleAsk for Help (v2) • Re: Opening and closing App.
Perhaps you want something like this.If WinExist, then if WinActive, then WinClose; if not WinActive, then WinActivate.If not WinExist, then Run.ProcessExist can find processes running in the...
View Article