Search found 443 matches

by hoppfrosch
26 Sep 2023, 00:31
Forum: Scripts and Functions (v2)
Topic: ahk binding library for cimgui
Replies: 19
Views: 2980

Re: ahk binding library for cimgui

I have made compatibility changes to version L, version 2.0.10 test
Works now - thx for your fast response!
by hoppfrosch
25 Sep 2023, 00:44
Forum: Scripts and Functions (v2)
Topic: ahk binding library for cimgui
Replies: 19
Views: 2980

Re: ahk binding library for cimgui

Trying to run the examples from the freshly cloned repository (Authotkey V2.0.9):
AutoHotkey64_KAQIp0oN2Z.png
AutoHotkey64_KAQIp0oN2Z.png (14.52 KiB) Viewed 2463 times
by hoppfrosch
23 Mar 2023, 00:29
Forum: Off-topic Discussion
Topic: What notebook software do you use?
Replies: 5
Views: 4266

Re: What notebook software do you use?

You might have a look at Obsidian - Markdown, simple, but very powerful ....
by hoppfrosch
21 Dec 2022, 01:40
Forum: General Discussion
Topic: V2 Officially Released!
Replies: 10
Views: 2010

Re: V2 Officially Released!

Wow ... finally! :dance:

:happybday:

Thanks you, Lexikos for your ongoing efforts and endless work on AutoHotkey :beer:
by hoppfrosch
28 Nov 2022, 02:28
Forum: Ask for Help (v2)
Topic: [2.0-rc1] Usage of stdout in FileAppend?
Replies: 7
Views: 917

Re: [2.0-rc1] Usage of stdout in FileAppend?

My question results from porting a v1.1 script to V2.0., where the FileAppend Statements appears without any further context within a function. I am confused - as I assumed stdout is always there and that therefore there is always a valid handle for stdout. As I understand, this is an incorrect assu...
by hoppfrosch
25 Nov 2022, 03:10
Forum: Ask for Help (v2)
Topic: [2.0-rc1] Usage of stdout in FileAppend?
Replies: 7
Views: 917

[2.0-rc1] Usage of stdout in FileAppend?

Hi there, Documentation on FileAppend for AHK 2.0-rc1 says: Standard Output (stdout) : Specifying an asterisk (*) for Filename causes Text to be sent to standard output (stdout) How to use this? str := "Hello" FileAppend(str, "*", "UTF-8") ;FAILS with "INVALID HANDLE" FileAppend(str, *, "UTF-8") ;FA...
by hoppfrosch
24 Nov 2022, 09:11
Forum: Ask for Help (v2)
Topic: How to define a Map of Arrays? Topic is solved
Replies: 10
Views: 1358

How to define a Map of Arrays? Topic is solved

Hi there, I want to define a map of arrays. What I currently do is following: keys := ["k1", "k2", "k3"] data := ["d1", "d2", "d3", "d4", "d5", "d6"] m := Map() for k in keys { for d in data { if m.Has(k) { m[k].push(data[A_index]) } else { m[k] := [data[A_Index]] } } } ExitApp This works, but I don...
by hoppfrosch
27 Oct 2022, 23:56
Forum: Other Utilities & Resources
Topic: TextGrab OCR
Replies: 2
Views: 3941

TextGrab OCR

TextGrab: https://github.com/TheJoeFin/Text-Grab: minimal optical character recognition (OCR) utility for Windows 10/11
by hoppfrosch
04 May 2022, 00:12
Forum: Scripts and Functions (v1)
Topic: [Script] Quick Picto Viewer v5+
Replies: 260
Views: 83247

Re: [Script] Quick Picto Viewer v5+

As you are asking: (number of stars means priority) - * draw bar charts tool - iterator tool, God rays, circular shapes duplicator - ASCII art filter, by gray levels - *** magic wand tool - motion /zoom blur effect - create symmetry - image, vectors - ** status bar with contextual infos
by hoppfrosch
29 Mar 2022, 23:39
Forum: Other Utilities & Resources
Topic: Mermaid for diagrams using text-based coding
Replies: 4
Views: 1271

Re: Mermaid for diagrams using text-based coding

An alternative for this is graphviz.

Here are a few examples.
by hoppfrosch
25 Jan 2022, 07:07
Forum: Scripts and Functions (v2)
Topic: GDI++ - class wrapper - 2022/01/25 - beta.3 - EXPERIMENT
Replies: 19
Views: 6203

Re: GDI++ - class wrapper - 2021/07/25 - beta.1 - EXPERIMENT

@neogna2 : as iseahound mentioned here, there is a GDI+ library (Gdip_All.ahk) compatible with the current AutoHotKey v2 beta 3:

https://github.com/buliasz/AHKv2-Gdip

Haven't tested or reviewed it ....
by hoppfrosch
27 Oct 2021, 01:57
Forum: Scripts and Functions (v2)
Topic: GuiControl_Ex - Extending GuiControls - 2023/04/03 - v2.0.2
Replies: 54
Views: 15739

Re: GuiControl_Ex - Extending GuiControls - 2021/06/21 - beta.1

@AHK_user : Your code above has still a bug:

Code: Select all

; ERROR: Edt01.NewMethod("Edit Control Cue Text")
; CORRECT:
Edt01.SetCue("Edit Control Cue Text")
by hoppfrosch
02 Oct 2021, 01:50
Forum: Tutorials (v1)
Topic: Using a Debugger with any text editor (DebugView/++)
Replies: 10
Views: 5053

Re: Using a Debugger with any text editor (DebugView/++)

Just one more hint - as you asked for:

Editors like VisualStudio Code catch the OutputputDebug-Output directly within the builtin terminal - no need to have a extra app run, just showing the Debug-Output within the IDE
by hoppfrosch
22 Sep 2021, 02:11
Forum: Ask for Help (v2)
Topic: [a138+] UnitTest-Framework? Topic is solved
Replies: 3
Views: 1552

Re: [a138+] UnitTest-Framework? Topic is solved

@guest3456 - thanks for the update of YUnit. Started using it ...

@lexikos - will have a look into it.
by hoppfrosch
20 Jul 2021, 00:09
Forum: Scripts and Functions (v1)
Topic: [Class] ImageButton - 1.5.00.00 - 20201230
Replies: 190
Views: 101502

Re: [Class] ImageButton - 1.5.00.00 - 20201230

F4Jonatas wrote:
18 Jul 2021, 07:52
First I did it for AHK v2 and I'm adding other things, for example more gradient, support gradient angle and transparency on the edges and background.
Which AHK V2 version? Tried it with V2.0-a138 and there were errors ...
by hoppfrosch
14 Jul 2021, 02:17
Forum: Ask for Help (v1)
Topic: Can AHK detect when Action Center notifications occur?
Replies: 44
Views: 11657

Re: Can AHK detect when Action Center notifications occur?

Just for completion:
In order to allow your apps access notifications, you have to set the correct permissions: Let Windows apps access notifications
by hoppfrosch
30 Jun 2021, 08:06
Forum: Ask for Help (v2)
Topic: [a138+] UnitTest-Framework? Topic is solved
Replies: 3
Views: 1552

[a138+] UnitTest-Framework? Topic is solved

Hi there,

has already somebody a simple UnitTest-framework for a138?

@lexikos: Do you still use a own version of Uberi's YUnit (https://github.com/Uberi/Yunit) - and are willing to share it?
by hoppfrosch
03 May 2021, 06:13
Forum: Scripts and Functions (v1)
Topic: [Class] SQLiteDB - Update on 2022-10-04
Replies: 303
Views: 204859

Re: [Class] SQLiteDB - Update on 2019-12-12

Are you sure using the correct 32-/64-bit combination? (AHK 32bit <=> sqlite3.dll 32bit, AHK 64bit <=> sqlite3.dll 64bit)

Go to advanced search