pyautogui works very well.
There is a Ş sign in Turkey. I write this sign on Windows with
ALT+num0+num2+num2+num2.
with pyautogui.hold('alt'):# Ş harfi OK
pyautogui.press(['num0', 'num2', 'num2', 'num2'])
It writes successfully.
The program continues without giving any errors. It can write over and over again.
But even though it does not give any errors, it plays an error sound every time it writes.
pyautogui works very well. There is a Ş sign in Turkey. I write this sign on Windows with ALT+num0+num2+num2+num2. with pyautogui.hold('alt'):# Ş harfi OK pyautogui.press(['num0', 'num2', 'num2', 'num2'])
It writes successfully. The program continues without giving any errors. It can write over and over again. But even though it does not give any errors, it plays an error sound every time it writes.
How can I solve this problem.
Thanks, Regard