autohotkey-v2-gui
Installation
SKILL.md
AutoHotkey v2 GUI Applications
Advanced GUI development patterns and optimization techniques for AutoHotkey v2.
When to Apply
- Building complex GUI applications with multiple controls
- Implementing event-driven user interfaces
- Optimizing GUI performance and memory usage
- Working with advanced controls like ListView, ComboBox, Tab
Critical Rules
Event Handling: Use OnEvent method, not g-labels
; WRONG - v1 g-label syntax
MyGui.Add("Button", "gButtonClick", "OK")