Search found 14 matches

by mandus
03 Dec 2023, 13:52
Forum: Ask for Help (v2)
Topic: OCR
Replies: 13
Views: 864

Re: OCR

Descolada wrote:
03 Dec 2023, 04:23
@mandus, ChatGPT produces v1 code and doesn't understand AHK code flow very well, meaning your code is 100% broken.
trying to build custom GPT, but yeah i will have to train an open-source model.
by mandus
03 Dec 2023, 04:13
Forum: Ask for Help (v2)
Topic: OCR
Replies: 13
Views: 864

Re: OCR

can you try this one #include OCR.ahk CoordMode, Mouse, Screen CoordMode, ToolTip, Screen ocrActive := false !b:: ; Alt+B to toggle OCR functionality ocrActive := !ocrActive if (ocrActive) SetTimer, PerformOCR, 100 ; Run PerformOCR every 100 ms when active else SetTimer, PerformOCR, Off ; Turn off O...
by mandus
07 Jan 2017, 22:04
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 421266

Re: AutoGUI - GUI Designer and Script Editor

Version 1.3.3a: - New Toolbar Editor (select Toolbar in the list of Control Types to open it). - Control types: Tab is now Tab3 (the preview window uses Tab2 with theme, but the output is Tab3). - The user is prompted to reload the file if it has been modified outside of AutoGUI. - Window menu: "Fi...
by mandus
22 Dec 2016, 03:06
Forum: Old Topics
Topic: AutoGUI - Script Editor, GUI Designer, Debugger and Tools
Replies: 423
Views: 421266

Re: AutoGUI - GUI Designer and Script Editor

Version 1.3.2a: - Highlight identical text. Select a word, for example: Gui , and all occurrences of that word will be highlighted in a different color. - Run/Test (F9) acts as "Save and Run" (if the file has already been saved). - New tool: Scripts Manager. Derived from a script written by tmplins...
by mandus
25 Nov 2016, 12:58
Forum: Scripts and Functions (v1)
Topic: Doc_to_PDF script
Replies: 6
Views: 2758

Re: Doc_to_PDF script

anyone knows how to get the process ID for a process that is started from a ComObj? in this example i open a document in word, i want to know the process id ;==================Word_converter_function================== wd_PDFConverter(InputFile) { SplitPath, InputFile,, OutDir,, OutNameNoExt NewFile ...
by mandus
23 Nov 2016, 03:30
Forum: General Discussion
Topic: A Github organisation for ahkscript
Replies: 245
Views: 185409

Re: A Github organisation for ahkscript

can i join please? https://github.com/MHketbi

also is there any tag or icon used to describe that this is an AHK script in comments? like the ones joedf have in his icon.

like the ones in the image and found here
Image
by mandus
23 Nov 2016, 02:10
Forum: Scripts and Functions (v1)
Topic: Doc_to_PDF script
Replies: 6
Views: 2758

Re: My first application :), Doc_to_PDF

Doct_to_PDF_v0.3.ahk changes: - added progress bar and text - fixed word process not closing - used better optimization from https://autohotkey.com/boards/viewtopic.php?f=6&t=6413 - changed saving method to use web publish quality settings (SaveAs2 to ExportAsFixedFormat) - changed Text language fro...
by mandus
22 Nov 2016, 05:07
Forum: Scripts and Functions (v1)
Topic: Doc_to_PDF script
Replies: 6
Views: 2758

Doc_to_PDF script

Hi, i managed to create my first ever program which makes me really happy, thank you AHK <3 Functioning application that takes all Word supported files that are dragged and dropped to it and save them as PDF into the same folder they came from. Doct_to_PDF_v0.3.ahk changes: - added progress bar and ...
by mandus
16 Nov 2016, 13:42
Forum: Ask for Help (v1)
Topic: adding tf.ahk library result in utf error
Replies: 5
Views: 2125

Re: adding tf.ahk library result in utf error

would you like to share with us your code so we can point out your issue.
by mandus
16 Nov 2016, 13:05
Forum: Ask for Help (v1)
Topic: Help how to get button text?
Replies: 4
Views: 2087

Re: Help how to get button text?

here is my code:
https://github.com/MHketbi/WIP/blob/master/WIP.ahk

line 364 the g-label triggers at start of script for no reason :s

line 314 to 361 i cant get any text.
by mandus
16 Nov 2016, 00:10
Forum: Ask for Help (v1)
Topic: GuiControl Topic is solved
Replies: 4
Views: 1411

Re: GuiControl Topic is solved

alright i tested this one, removed the v from vToon1, you only use v in the control to tell it that it is a variable, then use Toon1 to call it. Gui Add, Text, x25 y23 w120 h23 , Player Gui Add, DropDownList, gButtonPlayer vChoice x22 y53 w120, Player||Karen|Peter Gui Add, Text, x30 y80 w120 h23, To...
by mandus
15 Nov 2016, 23:49
Forum: Ask for Help (v1)
Topic: Help how to get button text?
Replies: 4
Views: 2087

Re: Help how to get button text?

Gui Add, Button, x560 y495 w160 h30 vBtn, Test Gui, Show GuiControlGet, BtnText,, Btn, Text msgbox % BtnText for more info see: GUI Variables GuiControlGet i am trying to do the same with Gui Add, Button, x830 y161.5 w160 h30 gChartShow_Main15 hwndClr_Btn15 vBtn15, test ChartShow_Main15: GuiControl...
by mandus
15 Nov 2016, 23:20
Forum: Ask for Help (v1)
Topic: Help how to get button text?
Replies: 4
Views: 2087

Help how to get button text?

How can i get the button text?

say for example i have

Code: Select all

Gui Add, Button, x560 y495 w160 h30, Test
how can i retrieve "Test" from the button?
by mandus
15 Nov 2016, 23:13
Forum: Ask for Help (v1)
Topic: GuiControl Topic is solved
Replies: 4
Views: 1411

Re: GuiControl Topic is solved

can you try this one Gui Add, Text, x25 y23 w120 h23 , Player Gui Add, DropDownList, gButtonPlayer vChoice x22 y53 w120, Player||Karen|Peter Gui Add, Text, x30 y80 w120 h23, Toon in Window 1 Gui Add, DropDownList, vToon1 x30 y100 w120, Toon1|| Gui Add, Button, gButtonOK x200 y306 w80 h23 Default, &O...

Go to advanced search