Post #2840: I found a hacky solution that involves sending an enter keypress on release. For
📋 Metadata
- Author: clclcl
- Date: 2019-10-21 06:15:44
- Type:
answer - Quality Score: 6/10
🏷️ Tags
⚙️ Related PME Features
- Python Scripting
- Macro Editor
💬 Content
I found a hacky solution that involves sending an enter keypress on release. For that I installed a python module with pip called keyboard and use it in an external script:
import keyboard
keyboard.press_and_release('enter')
❤️ 1 likes