|
Auto Clicker Open Source Code v1.1
( View screenshot )
|
| 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 cli |
| Other author's software: | - SwitchSniffer v1.4.0 SwitchSniffer is a program that can scan your switched LAN for up hosts and can reroute and collect all packets without the target users' recognition. It can also detect the ‘arpspoofer’ program and block user definable session like firewall.
- MACMask 1.4 MACMask is a powerful, yet an easy-to-use utility tool that changes (or masks) a MAC Address of network adapter for Windows NT, 2000, XP, and Server 2003 systems.
| | Show all author's software |
Description: 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. | Short tags: Auto, Click | |
| Free Download Auto Clicker Open Source Code v1.1 from softahead.com |
| Similar software shotlights: | - Source Code Browser 2.1 Don't you hate those webpages that try to prevent you from viewing their source code or saving images by disabling Right-Click? Now you can view the source of any webpage, as well as save any image
- DialogDevil 2007 DD-3.05.0 DialogDevil is four desktop automation tools in one all sharing the same interface. You drag a small icon from DialogDevil to another program to automate auto-click, auto-fill, auto-close, or
| | Find all software similar on Auto Clicker Open Source Code v1.1 |
| Similar smart reviews: | - Noki 1.4, Opening Nokia Transferring essential data between a PC and a mobile phone isnt an easy task. Typically, we have to get on with two «independent» information storages, the main (PC) and a mobile (phone) without any connections. Software provided by a phone manufacturer usually cant fully solve the problem. For Nokia phones, we have Nokia PC Suite (made
- Open Fitness 2.0, Caring For Your Body Careful work with your own body requires, eventually, an extensive work with information. It doesnt really matter whether you are an athlete with everyday workouts, or another sportsman, or you do some aerobic exercises, or you even just care about the diet, anyway you should know exactly what and how you did yesterday (a month ago, a year ago), and therefore you should plan what
- AntiPlagiarist 1.8, Where's Your Sources? Digital century and digital style of work bring new possibilities to all of us, but they also bring new problems. And new ways to solve those new problems; and new unwanted effects of those ways
And one of the most general possibilities (and a source of the problems) is *possibility to copy*. Scientific works and home works, magazine articles and blogposts, even entire chapters
- Dis# 3.1.1, Back To Sources The great feature of bytecode-based languages, and, namely, .NET assemblies, is a possibility to «return to source code» at any time. Assembly decompilation is a great tool to understand «how something works», either some general algorithms and data structures, or internal logics of some software or components. Unfortunately, simple decompilation tools give
- Virtual Music Composer 3.0 PRO, A Source For Inspiration Regardless of how «intellectual» you think your computer is, you cant disagree that todays software programmers have many smart ideas, useful for the most of us. In the area of music writing, conservative musicians tend to see the computer as a smart keyboard (sometimes way too smart); modern musicians tend to see it as a cutting table for samples
- PSpad, Code Looks Natural Have you ever tried editing any programming code in the Windows standard notepad program? Wasnt that easy and fun? I bet it was NOT. Although Notepad is light and easy to use, you can hardly recognize your even own code in it: no syntax highlighting or line numbering, and some important characters may even fail to appear. Is there a way to edit a code block
- Country Codes 2.7, Data at Fingertips In todays vague times of «common» unlimited broadband Internet connection (which is not so common, really) and «modern cool» web-services it is thought that one doesnt have to store on ones computer information one can find on web. People with such thoughts typically dont take into account the amount of time they waste when
- EymBarcodeReader.ocx Decode Bar Code Barcodes (the approach to encoding data in black-and-white bars) are widely used since their invention in the middle of the XXth century. They have proven themselves to be a universal and reliable mean in cases when a small amount of uniform significant data is to be associated with multiple things and then processed automatically. Though in last years the usage
- HtmlCapture ActiveX Control, Web Snapshot In A Few Lines Of Code Taking shots (images) of web-pages is an often and highly usable programming task. There are scores of possible usages, from large web-archiving suits to small one-time testing scripts; but the general purpose snapshot tools (either PrintScreen or specialized software) arent very good for the task. If you want one powerful yet compact solution for the problem which can be used virtually with any
| | Find all smart reviews similar on Auto Clicker Open Source Code v1.1 |
|