Automate most of your daily computer tasks by writing a script which can execute both mouse and keyboard actions thanks to this application.
- Clickermann
- Version :4.12.001
- License :Trial
- OS :Windows All
- Publisher :Johnny Challenger
Clickermann is a powerful Windows scripting tool used for automation β especially mouse clicks, keyboard actions, and simple GUI automation. It uses its own scripting language similar to Pascal or Basic. Here’s a step-by-step guide to help you get started:
β Step-by-Step: How to Use Clickermann
πΉ Step 1: Download and Install Clickermann
- Visit the official Clickermann website (Russian site, but the tool supports English).
- Download the latest version.
- Install the software on your PC.
- Launch Clickermann.
πΉ Step 2: Understand the Interface
Clickermann includes:
- Editor: For writing scripts.
- Run/Stop Button: To start or stop scripts.
- Script Log/Console: To see outputs or debug info.
- Variables Panel: Displays active variables in the script.
πΉ Step 3: Learn the Basic Syntax
Hereβs a simple example that moves the mouse and clicks:
// Move the mouse to X=500, Y=300 and click
MoveXY(500, 300);
LClick; // Left mouse click
Another example that types something:
// Types "Hello, world!" in the current window
SendText("Hello, world!");
Or a loop:
for i := 1 to 5 do
begin
MoveXY(500, 300);
LClick;
Delay(1000); // Wait for 1 second
end;
πΉ Step 4: Run Your Script
- Click Run (green button) in the Clickermann editor.
- Observe the automation running.
- Use Stop to halt it manually.
πΉ Step 5: Use Recording (Optional)
Clickermann has a Recorder that can capture mouse and keyboard actions:
- Click the Record button.
- Perform actions manually.
- Stop recording β Clickermann will convert them to code.
- You can edit and run this code later.
πΉ Step 6: Advanced Features
Clickermann supports:
- Image recognition (
FindImage) - Pixel color checking (
GetPixelColor) - Conditional logic
- Global hotkeys
- GUI interaction
- External DLL/API calls (advanced)
π Helpful Resources
- Documentation (Russian/English): Clickermann Docs
- Community Forum: https://clickermann.net/forum/
- YouTube Tutorials: Search “Clickermann tutorial” β many in Russian, some in English with subtitles.
β οΈ Notes
- It’s Windows-only.
- May be flagged by antivirus due to automation capabilities β add to exception list if safe.
- Use responsibly β automating games or third-party software can violate ToS.
