ahk2_lib
ahk2_lib copied to clipboard
Hi thqby, Is your cpp JSON parser officially part of this repo? If not, do you plan on including it at some point? https://www.autohotkey.com/boards/viewtopic.php?style=1&f=83&t=100602 I've been using it for a...
I use LoadScript library great. But when I compile my script to Exe using [AHK2EXE](https://github.com/AutoHotkey/Ahk2Exe), it does not work. I trace the error using DebugView++, I found when AHK run...
Example: ``` a := IMMDeviceEnumerator().GetDefaultAudioEndpoint().Activate(IAudioMeterInformation) if 4
Since JSON keys must be double quoted strings regardless of types this might be an oversight? I believe it's the ES() method that's guilty
This can be parsed: ``` text := " ( Item: - a: hello b: world c: - subitem1 - subitem2 )" obj := YAML.parse(text) ``` But If I move `b`...
我之前一直用H 2.0.18, 今天看到普通版本升级到了2.0.19,就想试一下H_2.1 alpha14, 认为应该比2.18改了不少问题。 结果就出这个问题了,用H2.0.18没问题;用H2.1 alpha14必出这个问题 #Include "D:\opencv_AHK2\opencv.ahk" 不知道是opencv.ahk的问题,还是2.1 alpha14的问题 Error: invalid index ▶ 483: vm[2].setTo(cv.MAT(1, 1, cv2.CV_8UC3, [0, 0, 0]))
请问 rapidocr 如何保证 识别出的字符串 顺序 跟图片上的 字符串顺序一致? 现在 对于 一排 几个数字 用空格分开的, 直接一次识别出的字符串 数字的顺序会随机化 对于多排 ,每排 用空格分开的字符, 也会 每排顺序都随机化,不稳定。
hello, I would like to know if it is possible to rewrite the rapidOCR library for ahk v1? I need to use rapidOCR in autohotkey v1. I don't know much...
`F9:: { MouseGetPos ,, &hwnd if !DllCall("IsWindow", "ptr", hwnd) { MsgBox "未能获取有效窗口句柄。" return } local wgcSession := "" try { wgcSession := wincapture.WGC(hwnd) if !IsObject(wgcSession) { MsgBox "创建WGC会话失败!" return }...