Search found 12 matches

by nt-_-ts
23 Sep 2023, 09:06
Forum: Ask for Help (v2)
Topic: Creating GUIs and GUI buttons with loops Topic is solved
Replies: 1
Views: 273

Creating GUIs and GUI buttons with loops Topic is solved

Hello everyone, I have a CSV file which contains some cut-outs information on each line. The file looks like this: Family;Name;Type;Material;Width;Height;Diameter;Rounding; Roxtec ST CSD;DN20;Circle;Steel;;;33.2; Roxtec ST CSD;DN25;Circle;Steel;;;40; Roxtec ST CSD;DN32;Circle;Steel;;;45.5; Roxtec ST...
by nt-_-ts
07 Aug 2023, 07:59
Forum: Wish List
Topic: Very eager and urgent!!!-----long press function interchange
Replies: 5
Views: 1111

Re: Very eager and urgent!!!-----long press function interchange

Can we add a feature in the next version? Let the middle long press of the mouse and the right long press function interchange, while the click does not change the original role I don't really understand this, but it looks like something that's already achievable with AHK. Have you used AHK before?
by nt-_-ts
07 Aug 2023, 06:50
Forum: Scripts and Functions (v2)
Topic: CreateImageButton() - 2024-01-01
Replies: 50
Views: 13380

Re: CreateImageButton() - 2023-07-10

Amazing work.
by nt-_-ts
28 Jul 2023, 01:12
Forum: Ask for Help (v1)
Topic: How to loop through keys and values in .ini file? Topic is solved
Replies: 18
Views: 1430

Re: How to loop through keys and values in .ini file? Topic is solved

#Requires AutoHotkey v1.1.33 ini := A_ScriptDir "\test.ini" IniRead txt, % ini, green1PW For each, line in StrSplit(txt, "`n") { part := StrSplit(line, "="), key := part.1, value := part.2 MsgBox 64, Key & value, % "Key = " key "`nValue = " value } #Requires AutoHotkey v2.0 ini := A_ScriptDir '\tes...
by nt-_-ts
17 Jul 2023, 07:48
Forum: Scripts and Functions (v2)
Topic: Easy OCR
Replies: 93
Views: 19357

Re: Easy OCR

Congrats for this one as well Descolada, I'm going to implement it into my project together with the amazing UIA library.
by nt-_-ts
09 Jul 2023, 08:16
Forum: Scripts and Functions (v2)
Topic: UIA v2
Replies: 385
Views: 58024

Re: UIA v2

Hi Descolada , With the following code: try { cadmaticWindow := UIA.ElementFromHandle("Project ahk_exe UIManager.exe") cadmaticWindow.WaitElement({Type:"Button",Name:buttonName},timeOut := 1000) cadmaticWindow.FindElement({Type:"Button",Name:buttonName}).Click() MsgBox("This line is never reached") ...
by nt-_-ts
19 Jun 2023, 07:53
Forum: Ask for Help (v2)
Topic: Changing fonts to bold makes text control show incomplete
Replies: 1
Views: 175

Changing fonts to bold makes text control show incomplete

Hello, I'm using the following code to add a control to a GUI: The ini file: [On demand scripts] ctrl1 =Set document to finished The GUI definition: try ctrl1 := String(IniRead(A_ScriptDir . "\user settings\user settings.ini","On demand scripts", "ctrl1")) mainWindow.Add("Text","X" . String(QLBtnWid...
by nt-_-ts
01 Jul 2022, 08:09
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 124313

Re: UIAutomation with a focus on Chrome

Is it possible that a software doesn't expose any of it's controls? I am trying to use it on 3DEXPERIENCE from Dassault and it seems that controls are not accessible by any means. I've tried the UIA viewer UIA 1.png and it highlights basically the entire window. Building the tree looks like pic atta...
by nt-_-ts
23 Jun 2022, 23:23
Forum: Scripts and Functions (v1)
Topic: UIAutomation with a focus on Chrome
Replies: 554
Views: 124313

Re: UIAutomation with a focus on Chrome

Learned about this by getting an email from Joe, really looking forward to testing this, my main engineering program is losing old controls in favour of UIA each and every update.
by nt-_-ts
23 Jun 2022, 08:05
Forum: Notepad++
Topic: Setup Notepad++ for AutoHotkey
Replies: 167
Views: 524377

Re: Setup Notepad++ for AutoHotkey

Does anyone know how to bypass the admin rights needed to add the auto-complete xml?
by nt-_-ts
28 Apr 2022, 06:56
Forum: Wish List
Topic: Official implementation and support for UIA interaction
Replies: 3
Views: 2215

Re: Official implementation and support for UIA interaction

Is that because UI Automation itself is slow when compared to keyboard/mouse-oriented methods? I believe it's mostly because the pywinauto library itself is not really optimized. I've tried this and compared how fast it is with mspaint and notepad since there are pywinauto examples of both and this...
by nt-_-ts
27 Apr 2022, 08:14
Forum: Wish List
Topic: Official implementation and support for UIA interaction
Replies: 3
Views: 2215

Official implementation and support for UIA interaction

Hello, I have been using AHK for a while now, although I wouldn't say I'm advanced in any way. I've recently been trying to wrap my head around using AHK for interacting with software that uses Microsoft's UIA technology, and honestly I still haven't figured it out yet. I know that it can be done fr...

Go to advanced search