Mouseclick

M.E.Farmer mefjr75 at hotmail.com
Mon May 2 19:32:53 EDT 2005


This could be fun!
# random clicks
# play with values to maximize annoyance
if __name__ == "__main__":
    import random
    for i in range(1000):
        x = random.randint(0,800)
        y = random.randint(0,600)
        Click(x,y)
        time.sleep(random.randint(0,20))




More information about the Python-list mailing list