https://github.com/plugfox/clicker
Пример кликера на AHK
https://github.com/plugfox/clicker
Last synced: 3 months ago
JSON representation
Пример кликера на AHK
- Host: GitHub
- URL: https://github.com/plugfox/clicker
- Owner: PlugFox
- License: other
- Created: 2019-01-09T11:54:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-09T21:20:01.000Z (over 5 years ago)
- Last Synced: 2025-02-23T14:27:06.403Z (over 1 year ago)
- Language: AutoHotkey
- Homepage:
- Size: 396 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Clicker
## How to build exe
### CMD
```cmd
start "" ^
"C:\Program Files\AutoHotkey\Compiler\Ahk2Exe.exe" ^
/in "C:\git\ahk\clicker\Clicker.ahk" ^
/out "C:\git\ahk\clicker\Clicker.exe"
```
### POWERSHELL
```powershell
Start-Process `
-FilePath "C:\Program Files\AutoHotkey\Compiler\Ahk2Exe.exe" `
-WorkingDirectory "C:\git\ahk\clicker\" `
-ArgumentList "/in Clicker.ahk /out Clicker.exe"
```