Search found 45 matches

by thebbandit
11 Dec 2023, 17:18
Forum: Scripts and Functions (v2)
Topic: [v2] FindText - Capture screen image into text and then find it
Replies: 29
Views: 11537

Re: [v2] FindText - Capture screen image into text and then find it

Its here! :D This library is a complete blessing for the AHK v2 community! I felt like I could not move to v2 without losing the best lib it had, now we can have our cake and eat it too!
Glad to see you still have the same fire for this library as always. :clap: :salute:
by thebbandit
26 Feb 2022, 15:41
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

6. Modify: There are some small changes to move closer to v2. Of course, it is still difficult to change to v2. The class name of V2 cannot have the same name as the function, so the class name of FindText is changed to FindTextClass, This causes some compatibility problems. The previous "FindText....
by thebbandit
27 Jul 2021, 16:15
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

feiyue My users have found a very obscure bug which only affects people with multiple monitors with non-identical refresh rates. The script ends up crashing, or going into a memory overflow. Variables all become blank, and all GUI become blank. Once users disable the non-conforming monitors, the is...
by thebbandit
24 Jun 2021, 17:35
Forum: Wish List
Topic: Function to get focused Edit's ComboBox hwnd/classNN or vice versa
Replies: 15
Views: 7756

Re: Function to get focused Edit's ComboBox hwnd/classNN or vice versa

I have made use of this Function to great effect in my script, and I wanted to come back to share the modifications I made in order to facilitate the needs of my users. Instead of a simple single search, it splits apart the search string and finds matches to all parts of the text split at each space...
by thebbandit
20 Jun 2021, 17:17
Forum: Ask for Help (v1)
Topic: Commandline Zip - progressbar - logfile - 7z or 7zG Topic is solved
Replies: 22
Views: 5584

Re: Commandline Zip - progressbar - logfile - 7z or 7zG Topic is solved

just want to acknowledge how helpful this thread was to zip the contents of a folder into an archive, while skipping the folder that contains the backups. I will be working on further improving this version of the code by converting it into a function... but nonetheless, I have not done that yet so ...
by thebbandit
14 Jun 2021, 10:57
Forum: Old Topics
Topic: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer
Replies: 35
Views: 21222

Re: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer

That sounds like another good fit, verfying the stamp might be unnecessary. As long as it does not find a "bad" control then it should not matter if it has the line at the top right? :) :?: I believe that verifying the stamp is important and valuable for a couple of reasons. For one, finding a "bad...
by thebbandit
14 Jun 2021, 10:22
Forum: Old Topics
Topic: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer
Replies: 35
Views: 21222

Re: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer

yep, at some point there was a dash added. I have the latest version from Adventure which comes with Auto-Gui 3.0.0. That sounds like another good fit, verfying the stamp might be unnecessary. As long as it does not find a "bad" control then it should not matter if it has the line at the top right? ...
by thebbandit
13 Jun 2021, 23:16
Forum: Old Topics
Topic: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer
Replies: 35
Views: 21222

Re: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer

Found a simple issue to fix :) When verifying the GUI file, it searches for "^; Generated by AutoGUI" when it should be "^; Generated by Auto-*GUI" so it can match with or without the dash after using it a bit, very very useful! Being able to re-order the elements and easily group them with sections...
by thebbandit
13 Jun 2021, 08:48
Forum: Old Topics
Topic: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer
Replies: 35
Views: 21222

Re: Relativity - Add relative positioning to controls in GUIs created by AutoGUI's GUI designer

very useful! I gave auto-GUI a shot a while back but found it was easier to just write the code manually because of the lack of relative positioning. And like you mentioned, making the conversion is a laborious process. Thank you for spending the time to code a solution to this!
by thebbandit
16 Feb 2021, 00:20
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

feiyue I am trying to understand how to use the new MultColor, it looks like a very interesting new addition for myself. Every other match mode has a button to apply the settings for that mode to the image capture. But in MultColor tab, it has R/G/B [1-255] [check] FindMultColor [Undo] But I click ...
by thebbandit
01 Feb 2021, 23:21
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

Updated to 8.0 version - 2021/01/31 :dance: :beer: .... 1. Add a parameter ( dir ), search direction, up, down, left, right four kinds. .... 2. Modify: Now, the combination search can mix different mode. WOW you have been busy! :D that is an amazing new feature! really making this library shine! Ed...
by thebbandit
28 Jan 2021, 01:32
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

I gave this my very best effort in making the conversion of this library over to AHK v2 and this was as far as I was able to make it. FindText_v2_attempt.ahk I am really hoping this is something of interest? I have done the majority of the tedious work of making conversions, but I am not sure if I d...
by thebbandit
23 Jan 2021, 14:28
Forum: Ask for Help (v1)
Topic: Ahk1.1+ User list & controls using COM, WMI, and Array
Replies: 4
Views: 2245

Re: Ahk1.1+ User list & controls using COM, WMI, and Array

small example to get the user list?? Loop % ( homedrive "\Users\*.*", UserList:="" ), 2 { if !( A_LoopFileName ~= "i)All|Default|Public" ) { UserList .= A_LoopFileName (r:="`r`n") } } msgbox % RTrim(UserList, r) obv it can be inserted into an array if this is what you're after.. edit: this deprecia...
by thebbandit
22 Jan 2021, 05:45
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

Amazing rebase! I am looking forward to using the new class based style! Just have to say, WOW the new editor is looking very nice with the ability to edit after the capture! You are amazing. Have you considered making a version that works in AHK v2? It is one of the things stopping me from even try...
by thebbandit
22 Nov 2020, 07:19
Forum: Scripts and Functions (v1)
Topic: Ordered Associative Array
Replies: 20
Views: 5360

Re: Ordered Associative Array

Hello, wonderful post. I know I am digging up a few years back, but as with AHK... there is not much choice. So apologies if this annoys the mods. This class allowed me to finally reformat downloaded json, but keep the order it was when I download the file. I modified the line in the JSON lib to use...
by thebbandit
26 Oct 2020, 13:31
Forum: Scripts and Functions (v1)
Topic: Radial menu class
Replies: 17
Views: 6844

Re: Radial menu class

This is very nice! I like how clean it is. May I ask what the .ini file is for and if you have an example of the ini file? Thanks again. Thanks, I use it every day at my work. It has been a long time when I wrote the part of the ini file, it was with the intention to build a radial menu by an ini f...
by thebbandit
28 Sep 2020, 20:20
Forum: Ask for Help (v1)
Topic: Scrolling area within resizable window
Replies: 3
Views: 588

Re: Scrolling area within resizable window

kczx3 wrote:
22 Sep 2020, 19:24
I can post something tomorrow I’ve used based on his code. Though it was made using an older AHK v2 version.
If you would that would be very nice, I have been trying to figure this out for a while
by thebbandit
22 Sep 2020, 16:52
Forum: Ask for Help (v1)
Topic: Scrolling area within resizable window
Replies: 3
Views: 588

Scrolling area within resizable window

I have gathered a bit of information about how to implement a scrolling window, and I want to take that idea a bit further. I am running into a few issues. First the main window cannot be given the +Resize option, or it's contents will drift off the window diagonally down and to the right. I think t...
by thebbandit
20 Feb 2020, 15:15
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

ok , got a real problem as of lately over here thats been bugging the hell out of my noob mind, ive been tinkering with a script to autolaunch my games that use game launchers , which have buttons like > Play< or > Launch Game< this is what ive gotten to work with from chunjee> these are my coords>...
by thebbandit
08 Feb 2020, 17:57
Forum: Scripts and Functions (v1)
Topic: FindText - Capture screen image into text and then find it Topic is solved
Replies: 1087
Views: 567853

Re: FindText - Capture screen image into text and then find it Topic is solved

Bearvius Inside the GUI function, you can add a line to reset the hotkey "conditions" maybe you have changed them? inside the capture section you can put this line near the top, and it may fix your issue. Maybe you have put other conditional hotkeys into your script and it is affecting this library...

Go to advanced search