Search found 74 matches

by Gary-Atlan82
01 Apr 2024, 12:00
Forum: Ask for Help (v1)
Topic: If I have a list of window titles, how do I then determine the Z order just for these windows?
Replies: 1
Views: 84

If I have a list of window titles, how do I then determine the Z order just for these windows?

Lets say that of the windows that exist on my system, the following is a subset of them: Untitled - Notepad ShareX 15.0 Settings Calculator my blog - Firefox Everything 1.5.0.1363a (x64) and I just so happen to have an array of this list: windowTitles := ["Untitled -Notepad", "ShareX 15.0", "Setting...
by Gary-Atlan82
01 Apr 2024, 11:27
Forum: Ask for Help (v1)
Topic: AHK1 UIA: How to get the name property of all child elements inside a parent element?
Replies: 1
Views: 95

AHK1 UIA: How to get the name property of all child elements inside a parent element?

I have a window with elements like THIS I am trying to get all of the child elements of a ControlType=ToolBar parent. I have managed to do it with this: UIA := UIA_Interface() ; Initialize UIA interface el := WinExist("Virtual Desktops Switcher") el := UIA.ElementFromHandle(el) el := el.FindFirstBy(...
by Gary-Atlan82
14 Mar 2024, 12:24
Forum: Ask for Help (v2)
Topic: Does the interpreter named 'AutoHotkey.exe' now have unicode support? Topic is solved
Replies: 4
Views: 225

Re: Does the interpreter named 'AutoHotkey.exe' now have unicode support? Topic is solved

@just me
I see, well that is a relief. Thanks!

But then I am wondering what are the other executables for? Isnt the "U" in "AutoHotkey64_UIA.exe" for "Unicode"?
by Gary-Atlan82
14 Mar 2024, 11:57
Forum: Ask for Help (v2)
Topic: Does the interpreter named 'AutoHotkey.exe' now have unicode support? Topic is solved
Replies: 4
Views: 225

Does the interpreter named 'AutoHotkey.exe' now have unicode support? Topic is solved

I have installed V2, the following executables are now on available: C:\Program Files\AutoHotkey\v2\AutoHotkey.exe C:\Program Files\AutoHotkey\v2\AutoHotkey64_UIA.exe C:\Program Files\AutoHotkey\v2\AutoHotkey32_UIA.exe C:\Program Files\AutoHotkey\v2\AutoHotkey.chm C:\Program Files\AutoHotkey\v2\Auto...
by Gary-Atlan82
08 Mar 2024, 15:11
Forum: Ask for Help (v1)
Topic: How to prevent 'control' from being seen when I trigger '^WheelUp'
Replies: 1
Views: 129

How to prevent 'control' from being seen when I trigger '^WheelUp'

I have this painting programme, when you hold down control the move tool temporarily becomes the active tool. I am trying to create two hotkeys that will increase decrease brush size: #SingleInstance, force ^wheelup:: tooltip, Ctrl + WheelUp ;Sendinput, {[} ;Increase brush size return ^wheeldown:: t...
by Gary-Atlan82
07 Mar 2024, 09:26
Forum: Ask for Help (v1)
Topic: Help with following PostMessage / SendMessage Tutorial found in the Official Documentations Topic is solved
Replies: 2
Views: 279

Help with following PostMessage / SendMessage Tutorial found in the Official Documentations Topic is solved

I am trying to get into postMessage / sendMessage by following the PostMessage / SendMessage Tutorial page. I downloaded the Winspector Spy , using the link provided by the page. I am stuck on step 1 of the tutorial, which says: >1.Open Winspector Spy and a "New Message" window. I just cant find thi...
by Gary-Atlan82
28 Feb 2024, 18:05
Forum: Ask for Help (v1)
Topic: Is possible to access commands found in a windows caption menubar without activating said window?
Replies: 0
Views: 181

Is possible to access commands found in a windows caption menubar without activating said window?

On windows if you right click a windows caption there is a menu there, with commands such as move , minimize etc and some windows can store their own commands there, so can some utilities, such as actual virtual desktops . The latter stores the following commands in every window: https://i.imgur.com...
by Gary-Atlan82
28 Feb 2024, 12:45
Forum: Ask for Help (v1)
Topic: Is ControlSend known to work with windows 11 File Explorer?
Replies: 0
Views: 130

Is ControlSend known to work with windows 11 File Explorer?

ControlSend,, ^{a}, ahk_class CabinetWClass , nothing is selected in the inactive File Explorer window ControlSend, ahk_parent, {enter}, C:\temp ahk_class CabinetWClass ahk_exe Explorer.EXEs , the selected folder does not get opened ControlSend, ahk_parent, ^a, ahk_class CabinetWClass , does not wo...
by Gary-Atlan82
27 Feb 2024, 18:00
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116444

Re: MouseGestureL

That did it, you make it look so easy. Cheers for this!
by Gary-Atlan82
26 Feb 2024, 10:31
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Re: Windows 11 File Explorer get the current selected filepath script not working Topic is solved

Well understood. I will get to the bottom of it then. Thank you guys!
Edit: Mikey I will keep your advice on screenshot vs code in mind as well, cheers!
by Gary-Atlan82
26 Feb 2024, 10:13
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 126967

Re: UIAutomation with a focus on Chrome

Descolada How do I get all of the child items of a element? https://i.imgur.com/eVOkZJR.png I have a simple window that belongs to a programme that acts as a "window manager" or "virtual desktop manager". The programme is really cool and all but has no support for querying information from it "prog...
by Gary-Atlan82
25 Feb 2024, 12:00
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Re: Windows 11 File Explorer get the current selected filepath script not working Topic is solved

mikeyww Yes I tested your script with no changes to it, by running it directly (double click in File explorer) I had to anyways, since the active window was hard coded to be explorer. None of the involved processes were elevated either. >Explorer.exe alone can have multiple matches. You would typic...
by Gary-Atlan82
24 Feb 2024, 17:39
Forum: Scripts and Functions (v1)
Topic: MouseGestureL
Replies: 326
Views: 116444

Re: MouseGestureL

Hello, I am trying to implement a single and a double tap of left click while holding right click, following your guide here , I created the following gestures RB__ RB_LB__ RB_LB__LB__ The gestures RB__ and RB_LB__LB__ work as expected but RB_LB__ is giving me a issue I have not been able to solve T...
by Gary-Atlan82
24 Feb 2024, 10:44
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Re: Windows 11 File Explorer get the current selected filepath script not working Topic is solved

mikeyww JoeWinograd Thanks for confirming that these functions do indeed work with windows 11. Its good to know its just on my end. Thanks for the alternative solution Joe! I tried it and it looks like I am getting the same issue, the selected file is never found. The console reports that toReturn ...
by Gary-Atlan82
23 Feb 2024, 08:29
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Re: Windows 11 File Explorer get the current selected filepath script not working Topic is solved

mikeyww Thanks for that, really appreciate it. Having tried it, I just get an empty message box now. Hmm.. I dont think this approach works with Windows 11 explorer. You have already helped me so much, I think I will adjourn this affair here and ask around for an alternative in a few days. Cheers!
by Gary-Atlan82
22 Feb 2024, 12:51
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Re: Windows 11 File Explorer get the current selected filepath script not working Topic is solved

mikeyww Hey thanks for the promop reply, the post you linked to seems to be V2 code. I am on V1 sadly. I followed the link you shared that attributed the code to teadrinker, so I tried his code in his post but I came across the same "catastrophic" error I dont know any V2 and my V1 skillset is not ...
by Gary-Atlan82
22 Feb 2024, 12:38
Forum: Ask for Help (v1)
Topic: Windows 11 File Explorer get the current selected filepath script not working Topic is solved
Replies: 18
Views: 914

Windows 11 File Explorer get the current selected filepath script not working Topic is solved

I found this script that is meant to get the current directory open in File explorer and also get the currently selected files full path. The script was shared by MancioDellaVega in the thread Get current explorer window path . The version he shared throws a catastrophic error , svArtist whom was ha...
by Gary-Atlan82
20 Feb 2024, 07:55
Forum: Tutorials (v1)
Topic: FindText tutorial
Replies: 105
Views: 73073

Re: FindText tutorial

Amazing! I will have a go at this when I get back to my PC.
I dont know where AutoHotkey would be without you two, thank you for all your efforts!

Go to advanced search