vote up 1 vote down star

Using Perl, Python, or Ruby, can I write a program, probably calling Win32 API, to "click" on the screen at scheduled time, like every 1 hour?

Details:

This is for experimentation -- and can the clicking be effective on Flash content as well as any element on screen? It can be nice if the program can record where on screen the click needs to happen, or at least draw a red dot on the screen to show where it is clicking on.

Can the click be targeted towards a window or is it only a general pixel on the screen? What if some virus scanning program pops up covering up the place where the click should happen? (although if the program clicks on the white space of a window first, then it can bring that window to the foreground first).

By the way, can Grease Monkey or any Firefox add-on be used to do this too?

flag

24% accept rate
Any progress on this? Do none of the answers solve your problem? – jitter Dec 5 at 15:46

6 Answers

vote up 1 vote down

If using a different tool is allowed, you should take a look at AutoHotkey or AutoIt. These tools were made for this sort of thing, and I've always been keen on using the right tools for the right jobs.

AutoHotkey is based on AutoIt I believe, and it is my personal preference. You only really need 2 functions for what you're trying to achieve, MouseMove and MouseClick.

link|flag
vote up 6 vote down

To answer the actual question, in Perl, you would use the SendMouse (and the associated functions) provided by the Win32::GuiTest module.

#!/usr/bin/perl

use strict;
use warnings;

use Win32::GuiTest qw( MouseMoveAbsPix SendMouse );

MouseMoveAbsPix(640,400);
SendMouse "{LEFTCLICK}";

__END__

UPDATE:

What if some virus scanning program pops up covering up the place where the click should happen?

In that case, you would use FindWindowLike to find the window and MouseClick to send a click to that specific window.

link|flag
+1 for Win32::GuiTest. It's a great tool. I wrote a bot (App::SweeperBot, available as a compiled .exe from sweeperbot.org ) that uses it to play minesweeper, so I no longer need to play it myself. ;) Win32::GuiTest also provides facilities for screen capture, and the Win32::GUIRobot (which is built on top) provides dedicated routines for finding images on the screen. – pjf Jun 18 at 6:51
@pjf Thanks. I remember reading your article. Great idea, great implementation. – Sinan Ünür Jun 18 at 12:49
vote up 4 vote down

See this:

http://xkcd.com/196/

link|flag
1  
at least i don't have a girl here, so there is plenty of time to write the script. – Jian Lin Jun 17 at 14:44
vote up 0 vote down

I find this is easier to approach in Java or C++. Java has a Robot class that allows you to just pass x, y coordinates and click somewhere. Using C++, you can achieve that same functionality using mouse_event() or SendMessage() with the WM_MOUSE_DOWN flag. SendMessage is more technical but it allows you to use FindWindow() and send mouse clicks to a specific window, even if it's minimized.

Using a scripting language like Python or Ruby, I'd guess that you'd end up hooking into one of these Windows API functions anyway.

link|flag
vote up 8 vote down

If you are trying to automate some task in a website you might want to look at WWW::Selenium. It, along with Selenium Remote Control, allows you to remote control a web browser.

link|flag
can it even click on Flash content? – Jian Lin Jun 17 at 14:37
1  
It can click on anything in the browser. – Chas. Owens Jun 17 at 14:47
vote up 7 vote down

In Python there is ctypes and in Perl there is Win32::API

ctypes Example

from ctypes import *
windll.user32.MessageBoxA(None, "Hey MessageBox", "ctypes", 0);

Win32::Api Example

use Win32::GUI qw( WM_CLOSE );
my $tray = Win32::GUI::FindWindow("WindowISearchFor","WindowISearchFor");
Win32::GUI::SendMessage($tray,WM_CLOSE,0,0);
link|flag
oh i installed Strawberry Perl but the above cannot run... do some modules need to be installed? It says: Can't locate Win32/GUI.pm in @INC (@INC contains: C:/strawberry/perl/lib C:/strawberry/perl/site/lib .) at try2.pl line 1. – Jian Lin Jun 17 at 17:39
Get Win32::GUI from search.cpan.org/~robertmay/Win32-GUI-1.06/… Follow the appropriate instructions from cpan.org/modules/INSTALL.html – jitter Jun 17 at 18:02
cpan -i Win32::GUI – Alexandr Ciornii Jun 17 at 20:08
I think you meant Python, not Perl, for ctypes... I fixed it for you. – musicfreak Jun 17 at 21:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.