Is there a good way to get text string for keyboard?
Lets say certain action would trigger "typing" mode. Until I press enter, all entered text would be stored into python variable (maybe payload?). Some sort of dialog with text box would be fine too.
Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Get text string from keyboard
Re: Get text string from keyboard
I'm no Python programmer, but this Python Command should do what you're asking:
eg.globals.string_input = raw_input("Enter text: ")
eg.globals.string_input = raw_input("Enter text: ")
Re: Get text string from keyboard
Wow that was simple one, thanks a lot!