Re: [Tutor] Mouse clicking

2007-06-30 Thread Alan Gauld
"elis aeris" <[EMAIL PROTECTED]> wrote in > It's very cryptic to me and more or less is not explained in any > python > tutorials. > > http://search.msdn.microsoft.com/search/results.aspx?view=msdn&qu=mouse_event > http://search.msdn.microsoft.com/search/results.aspx?view=msdn&qu=keybd_event > ht

Re: [Tutor] Mouse clicking

2007-06-30 Thread elis aeris
can you take a look of these? It's very cryptic to me and more or less is not explained in any python tutorials. http://search.msdn.microsoft.com/search/results.aspx?view=msdn&qu=mouse_event http://search.msdn.microsoft.com/search/results.aspx?view=msdn&qu=keybd_event http://search.msdn.micro

Re: [Tutor] Mouse clicking

2007-06-30 Thread Alan Gauld
"elis aeris" <[EMAIL PROTECTED]> wrote > BOOL EnumWindows( >WNDENUMPROC lpEnumFunc, // pointer to callback function >LPARAM lParam // application-defined value > ); > > I am not sure what this is for @_@ If you don't know the window class/title in advance you can get a list of all o

Re: [Tutor] Mouse clicking

2007-06-30 Thread elis aeris
Bit torrent .torrent file aquisition assistance. Given a webpage of forum threads that links to download links of .torrent files, the code should download every .torrent files it can find within 2 levels of connections. Bit torrent high performance client Given that popular bit torrent clien

Re: [Tutor] Mouse clicking

2007-06-30 Thread elis aeris
win32gui .FindWindow int = *FindWindow(className, WindowName *) Retrieves a handle to the top-level window whose class name and window name match the specified strings. Parameters *className* : int/string *WindowName* : string HWND FindWindow( LPCTSTR lpClassName, // pointer to class name

Re: [Tutor] Mouse clicking

2007-06-30 Thread elis aeris
what module should be imported? On 6/30/07, Alan Gauld <[EMAIL PROTECTED]> wrote: "Lisa Barrott" <[EMAIL PROTECTED]> wrote > I was wondering if there was any way to force a mouse click at a set > location using python even when the another window is focussed. > I'm using Windows XP Yes, you

Re: [Tutor] Mouse clicking

2007-06-30 Thread Alan Gauld
"Lisa Barrott" <[EMAIL PROTECTED]> wrote > I was wondering if there was any way to force a mouse click at a set > location using python even when the another window is focussed. > I'm using Windows XP Yes, you can use the Win32 API. You need to get the target window handle with - HW

[Tutor] Mouse clicking

2007-06-30 Thread Lisa Barrott
Hello I was wondering if there was any way to force a mouse click at a set location using python even when the another window is focussed. I'm using Windows XP. -Lawrence ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/t