tags:

views:

19

answers:

1

Could someone tell me why this doesn't work?

def selectAndCopy(x,y,z,w):
    ctypes.windll.user32.SetCursorPos(x,y)
    time.sleep(1)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0, 0)
    time.sleep(1)
    ctypes.windll.user32.SetCursorPos(z,w)
    time.sleep(1)
    win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0, 0)
    time.sleep(1)
    shell.SendKeys('^c')

the code isn't dragging to the first location to the second, it's only moving it.

A: 

Don't reinvent the wheel! There's the package pywinauto that has a ready-to-use function for this:

pywinauto.controls.HwndWrapper.DragMouse(button='left', pressed='', 
                                         press_coords=(0, 0), 
                                         release_coords=(0, 0))
leoluk
This doesn't work as shown. Can you provide a more detailed example using Notepad.exe? Also, it seems like you can only drag within the rectangle of a specific window and not between windows.
reckoner