Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problems with hotkey #872

Open
PeaceAndJoyAaron opened this issue Aug 13, 2024 · 0 comments
Open

Problems with hotkey #872

PeaceAndJoyAaron opened this issue Aug 13, 2024 · 0 comments

Comments

@PeaceAndJoyAaron
Copy link

PeaceAndJoyAaron commented Aug 13, 2024

Hi,guys,I have currently written a test script with the following content
`import time
import pyautogui

time.sleep(1)

pyautogui.mouseDown(button='left')
pyautogui.mouseUp(button='left')
pyautogui.hotkey('ctrl', 'shift', 'down')
print('Script completed.')`

And I have also tried to write it in the following format

`import time
import pyautogui

time.sleep(1)

pyautogui.mouseDown(button='left')
pyautogui.mouseUp(button='left')
pyautogui.keyDown('ctrl')
pyautogui.keyDown('shift')
pyautogui.keyDown('down')
pyautogui.keyUp('down')
pyautogui.keyUp('shift')
pyautogui.keyUp('ctrl')
print('Script completed.')`

But currently, it seems that either way of writing will render 'shift' ineffective.
Looking forward to receiving a response, thank you very much

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant