Auto Clicker Open Source Code v1.1

Introduction
Auto Clicker is a program that clicks your mouse automatically. It allows the mouse to click without giving the user sore fingers. Just set X-Y List using on your keyboard, set the click-interval, click button and away from mouse and keyboard, it goes clicking the mouse automatically. For getting a faster auto-click speed, try setting the click interval to lower number(miliseconds). To stop Auto Clicker, just press on the keyboard. Auto Clicker can be used to make repetitive clicking easy but should not be used to cheat in online-games. Auto Clicker is a freeware, easy to use, intuitive program and the program source is open.

Using the code
To build this program, you should know mouse_event() function and hooking mechanizm.

From MSDN, you can know the mouse_event() function synthesizes mouse motion and button clicks.

This is examples using mouse_event() in this program:

mouse_event(MOUSEEVENTF_LEFTDOWN, 0, 0, 0, GetMessageExtraInfo()); // Left Key Down
mouse_event(MOUSEEVENTF_LEFTUP, 0, 0, 0, GetMessageExtraInfo()); // Left Key UP

mouse_event(MOUSEEVENTF_RIGHTDOWN, 0, 0, 0, GetMessageExtraInfo()); // Right Key Down
mouse_event(MOUSEEVENTF_RIGHTUP, 0, 0, 0, GetMessageExtraInfo()); // Right Key Up
To get keyboard messages when the application loses focus, you need hooking procedures.

In OnInitDialog(), SetWindowsHookEx() is used and HookProc of SetWindowsHookEx is used as follows:

LRESULT CALLBACK HookMouseProc(int nCode, WPARAM wParam, LPARAM lParam)
{
HWND hwnd;
LRESULT lResult = 0;
if(nCode == HC_ACTION)
{
if(((EVENTMSG*)lParam)->message == VK_ESCAPE)
{
hwnd= ::FindWindow(NULL, strProgName);
::SendMessage(hwnd,WM_KEY_ESCAPE,1,1);
return 1;
}
else if(((EVENTMSG*)lParam)->message == VK_PAUSE)
{
hwnd=::FindWindow(NULL, strProgName);
::SendMessage(hwnd,WM_KEY_PAUSE,1,1);
return 1;
}
}

return CallNextHookEx( hHook, nCode, wParam, lParam);
}

How to use
First of all, you should fill X-YList box with mouse points on screen. Just move your mouse while press key on the keyboard.

While Auto Clicker is working, if you want to stop it, just press key on the keyboard.

If [PAUSE] key on the keyboard is pressed, you can pause Auto Clicker.

You can save X-Y List to a file and load it from the file using and button.

Details

Auto Clicker Open Source Code Screenshot
Publisher:
Price:
$0
License:
Freeware
File Size:
1 MB
Platform:
WinXP
Date Added:
20 Sep 2007
Rating:
5 Stars


Auto Clicker Open Source Code Free Download

Categories:

auto

Auto Clicker Open Source Code Related Downloads

Tidycode Pl Sql Formatter Screenshot

This software formats Pl/Sql programs in a Dos prompt or in a GUI.

Rating

1.07 MB | Demo $25 | 14 Mar 2008

Tidycode Pl Sql Formatter Free Download  Buy Tidycode Pl Sql Formatter for only $25
DBF to SQL Screenshot

Allows you to convert your dbf files to SQL script.

Rating

0.64 MB | Shareware $29.95 | 15 May 2008

DBF to SQL Free Download
MyDeveloper Tools for VS.NET Screenshot

Powerful add-in that lets you develop MySQL databases from Visual Studio .NET

Rating

4.49 MB | Shareware $69.95 | 29 Nov 2007

MyDeveloper Tools for VS.NET Free Download
DTM Data Modeler Screenshot

CASE tool for database developers that supports forward and reverse engineering

Rating

1.35 MB | Demo $179 | 02 Jun 2008

DTM Data Modeler Free Download
Week's Best

System Keylogger

System Keylogger
System Keylogger can be used for monitoring PCs at home and in the office! It logs keystrokes, chat conversations, applications, windows, websites, passwords, emails and can take screenshots at a given period of time.


Weekly Newsletter

Enter your e-mail address to receive our free newsletter:



Most Popular Downloads