예제 #1
0
파일: mouse.py 프로젝트: badtyprr/keyboard
def click(button=LEFT):
    """ Sends a click with the given button. """
    os_mouse.press(button)
    os_mouse.release(button)
예제 #2
0
def click(button=LEFT):
    """ Sends a click with the given button. """
    os_mouse.press(button)
    os_mouse.release(button)
예제 #3
0
파일: mouse.py 프로젝트: badtyprr/keyboard
def press(button=LEFT):
    """ Presses the given button (but doesn't release). """
    os_mouse.press(button)
예제 #4
0
def press(button=LEFT):
    """ Presses the given button (but doesn't release). """
    os_mouse.press(button)