Benou 0 Newbie Poster

Hello everybody,

I am having trouble to create the following script: I would like a screenshot been taken each time a click is detected. Also (if possible) to be able to modify the x and y of the size of the screenshot.
There is my code (doesn't work yet):

import pyHook
import pythoncom
import ImageGrab

def onclick(event):
        img = ImageGrab.grab()
        img.save("screenImage1.jpg")
        return true

hm = pyHook.HookManager()
hm.SubscribeMouseAllButtonsDown(onclick)
hm.HookMouse()
pythoncom.PumpMessages()
hm.UnhookMouse()

Thanks a lot :).

Benou