Keyboard out?

Is there a way to send keyboard combinations from touch designer to windows?
Thanks!

This worked for me -

[code]from pyautogui import hotkey

hotkey(‘win’, ‘r’)[/code]

Just run “pip install pyautogui”

Can you translate this into noob language? :slight_smile:

Sure, :stuck_out_tongue:

Check out this page for setting up TD for use with outside libraries-
derivative.ca/wiki088/index. … ng_Modules

Here’s the docs for that python module-
pyautogui.readthedocs.io/en/latest/

I’ve attached a quick example of a button trigger to open the run menu in windows.
Keyboard_Out.tox (1.37 KB)

Thanks Tim. I will look into documentation and try this method.