Search found 20 matches

by dbgba
17 Apr 2024, 06:54
Forum: Scripts and Functions (v1)
Topic: AHK Process Management
Replies: 0
Views: 253

AHK Process Management

20240417195303.jpg ; Hold Ctrl key to select multiple processes, double-click=exit target process, right-click=pop-up optional menu #NoEnv ; By dbgba #NoTrayIcon #SingleInstance Force SetBatchLines -1 DetectHiddenWindows On ; AHK scripts self-start with administrator privileges, Kill processes requ...
by dbgba
27 Mar 2024, 18:05
Forum: 脚本函数
Topic: array.ahk 特别介绍 (v1)
Replies: 1
Views: 628

Re: array.ahk 特别介绍 (v1)

感谢分享和中文化,但是帖子提供的 安装 链接打不开
by dbgba
29 Feb 2024, 05:48
Forum: Ask for Help (v1)
Topic: [v1.1.37.01]Gui modifies content with GuiControl
Replies: 1
Views: 88

[v1.1.37.01]Gui modifies content with GuiControl

When Edit has a string, the test1 button will work normally Gui Add, Text, , The test1 button does not take effect when the edit box is empty Gui Add, Edit, x10 y24 Section vvtext Gui Add, Button, ys gtest1, test1 Gui Add, Button, ys gtest2, test2 Gui Show Return test1: Gui Submit, NoHide GuiControl...
by dbgba
25 Jan 2024, 01:52
Forum: Ask for Help (v1)
Topic: Found a bug where Gui doesn't trigger GuiClose after Gui multitabs
Replies: 1
Views: 200

Found a bug where Gui doesn't trigger GuiClose after Gui multitabs

After pressing the jump button, the default Gui's GuiClose label will be invalidated The demo code is as follows: ; Goto JumpNewGui Gui BugReproduction: Add, Text, Section, After clicking on the jump button. clicking the close button in the top right corner of the new GUI does not trigger the GuiClo...
by dbgba
17 Jan 2024, 09:16
Forum: Scripts and Functions (v1)
Topic: Buffer() for AHK v1.1
Replies: 2
Views: 711

Re: Buffer() for AHK v1.1

That's a great idea!
by dbgba
14 Jan 2024, 03:38
Forum: Ask for Help (v1)
Topic: Disabling tray icon double-click popups doesn't work
Replies: 1
Views: 196

Disabling tray icon double-click popups doesn't work

I'm trying to disable or change the tray icon double click popup doesn't work, am I doing something wrong? #Persistent hMenu := MenuGetHandle("Tray") Loop 10 (A_Index!=8 && DllCall("RemoveMenu", "Ptr", hMenu, "Int", 65299+A_Index, "Int", 0)) DllCall("SetMenuDefaultItem", "Ptr", hMenu, "Uint", 65307,...
by dbgba
13 Sep 2023, 09:39
Forum: Scripts and Functions (v1)
Topic: Call the v2 library in v1
Replies: 6
Views: 1616

Re: Call the v2 library in v1

Thanks to thqby Functions, I've tweaked and added examples to Functions. Support for ahkdll has been removed due to compatibility issues with v2 calls. Demo.ahk #Requires AutoHotkey v1.1.33+ SetBatchLines -1 SetWorkingDir %A_ScriptDir% v2code= (LTrim ` % testFunc(a) => MsgBox(a) Class testClass { st...
by dbgba
05 Aug 2023, 04:39
Forum: Scripts and Functions (v1)
Topic: [Class] ImageButton - 1.5.00.00 - 20201230
Replies: 190
Views: 103193

Re: [Class] ImageButton - 1.5.00.00 - 20201230

Thanks to @just me and @tmplinsh i I've added Base64 support and batch replace function on your base to make ImageButton more convenient to use in Gui. Any modifications or corrections are welcome! 20230805174656.gif Demo.ahk #Include <Class_ImageButton> Gui, Color, White Gui Add, Text, Section x20 ...
by dbgba
23 Aug 2022, 23:22
Forum: Scripts and Functions (v1)
Topic: OpenCV COM
Replies: 51
Views: 14038

Re: OpenCV COM

Thank you for the tutorial on this topic, and share the functions of bitmap and mat conversion. Let opencv do more. #include Gdip_all.ahk hOpenCV := DllCall("LoadLibrary", "Str", "opencv_world455.dll", "Ptr") hOpenCVCom := DllCall("LoadLibrary", "Str", "autoit_opencv_com455.dll", "Ptr") Try cv := Co...
by dbgba
12 Aug 2022, 04:06
Forum: 脚本函数
Topic: 基于Mediapipe的摄像头手势识别
Replies: 1
Views: 2304

基于Mediapipe的摄像头手势识别

下载地址 由于此项目包含调用多个类库和文件,所以仅提供GitHub下载地址: https://github.com/dbgba/VisualGestureRecognition 点击 “Code” 里的,”Download ZIP”即可下载源代码包 项目简介 基于AutoHotkey制作的摄像头手势识别软件。能让你的电脑摄像头在识别手势后,执行自定义的电脑操作命令。同时也集成了语音识别功能,可调用Windows自带API实现简单的语音助手功能。 手势识别调用了高性能的Mediapipe动态链接库来免部署实现。而电脑自动化操作使用AutoHotkey脚本语言来实现,它能更方便的对电脑进行深度调...
by dbgba
13 Jul 2022, 06:31
Forum: Scripts and Functions (v1)
Topic: ExecProcess - Multi-process shared function communication
Replies: 2
Views: 1138

Re: ExecProcess - Multi-process shared function communication

It has been merged and updated into the topic post
by dbgba
23 Apr 2022, 03:39
Forum: Scripts and Functions (v1)
Topic: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)
Replies: 391
Views: 247035

Re: Examples of Non-Standard GUIs (ActiveX, GDI, etc.)

I have attempted to create a UI similar to the one from my last post in this thread. I'm using less code this time, and there are no external images required. This Gui is a work in progress. In case you're curious, the design is a reproduction of the PeaZip options screen, with some occasional modi...
by dbgba
18 Apr 2022, 04:19
Forum: Tutorials (v1)
Topic: FindText tutorial
Replies: 98
Views: 68572

Re: FindText tutorial

The tutorial explains in great detail that, thank Descolada.
by dbgba
07 Apr 2022, 10:10
Forum: Tutorials (v1)
Topic: Using SeleniumBasic v3.141.0.0 with AHK
Replies: 24
Views: 17736

Re: Using SeleniumBasic v3.141.0.0 with AHK

@dbgba, I'd be curious to see some code where you've integrated SeleniumBasic with Chrome.ahk. Sounds interesting! Regards, burque505 burque505 , I just did a simple integration, mainly to stop relying on Chrome.ahk for JS calls. Many times Xpath is more efficient to use :thumbup: wd := ComObjCreat...
by dbgba
06 Apr 2022, 21:22
Forum: Tutorials (v1)
Topic: Using SeleniumBasic v3.141.0.0 with AHK
Replies: 24
Views: 17736

Re: Using SeleniumBasic v3.141.0.0 with AHK

Thanks for sharing, I integrated SeleniumBasic with Chrome.ahk and it works fine.
by dbgba
03 Apr 2022, 19:33
Forum: Ask for Help (v1)
Topic: AutoHotkey Permissions
Replies: 28
Views: 3435

Re: AutoHotkey Permissions

This can be done to downgrade the start

Code: Select all

Run Explorer.exe "C:\Program Files\Microsoft Office\root\Office16\OUTLOOK.EXE"
by dbgba
29 Mar 2022, 08:12
Forum: Ask for Help (v1)
Topic: Sending Push Notifications on iOS
Replies: 5
Views: 963

Re: Sending Push Notifications on iOS

Try Bark, the solution to your needs

https://github.com/Finb/Bark
by dbgba
26 Mar 2022, 00:26
Forum: Scripts and Functions (v1)
Topic: Class WebSocket2 v1.1 (32bit+64bit) without IE support
Replies: 25
Views: 6948

Re: Class WebSocket2 v1.1 (32bit+64bit) without IE support

64-bit Win7 and 64-bit Win10, the process still exists after ExitApp. The operating system is using the Chinese language You are including WebSocketAsio.ahk and WS2.ahk you need one of them. and convert Chrome.AHK accordingly, WebSocketAsio.dlls does/can not support Multiple Pages at once, WS2 dllc...
by dbgba
24 Mar 2022, 12:31
Forum: Scripts and Functions (v1)
Topic: Class WebSocket2 v1.1 (32bit+64bit) without IE support
Replies: 25
Views: 6948

Re: Class WebSocket2 v1.1 (32bit+64bit) without IE support

rename Evaluate() -> Eval_obj() and rename Eval_obj() -> Evaluate() but it has other problems, such as the process not exiting on exit. Thank you, but I don't understand. Can you show me with an example? #SingleInstance Force #include JSON.ahk #include WS2.ahk ; https://www.autohotkey.com/boards/vi...
by dbgba
19 Dec 2021, 21:56
Forum: Scripts and Functions (v1)
Topic: ExecProcess - Multi-process shared function communication
Replies: 2
Views: 1138

ExecProcess - Multi-process shared function communication

Multi-process shared functions, chain shutdown and communication ProcessVar := new ExecProcess("LabelName") Create a new associated process, you can pass parameters ProcessVar := "" Clear this "process variable" to close the corresponding process Syntax reference AHK_H to thread control, and add th...

Go to advanced search