An open API service indexing awesome lists of open source software.

https://github.com/plugfox/clicker

Пример кликера на AHK
https://github.com/plugfox/clicker

Last synced: 3 months ago
JSON representation

Пример кликера на AHK

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"
```