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))

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to