![]() |
How to detect key presses - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: How to detect key presses (/thread-24875.html) |
How to detect key presses - BlinkyGamer99 - Mar-08-2020 How do you detect key events? RE: How to detect key presses - Larz60+ - Mar-08-2020 you need to elaborate. key events where? in GUI ? if so which one? in main program? on Flask app? by your user name, I'm guessing pygame is that correct? RE: How to detect key presses - BlinkyGamer99 - Mar-14-2020 Actually, key events in file and not PyGame. RE: How to detect key presses - michael1789 - Mar-15-2020 (Mar-14-2020, 09:47 AM)BlinkyGamer99 Wrote: Actually, key events in file and not PyGame. Key events are by definition something that happens on your keyboard, at the time they are pressed. What exactly are you hoping to do? |