Page 1 of 1

send keypress command on network

PostPosted: Sat Oct 07, 2017 8:03 pm
by roeland22896
Hello,

How can i send "keypress" commands to an external computer in the network?
I want to send keypress "LEFT" to an other pc in the network.
I managed to do this on the local device where the manager is running on, but don't know how to send this command on a network to a remote pc, or PB player/server
Anyone have experience with this or any idea that might help me with this?

Cheers,

Re: send keypress command on network

PostPosted: Sun Oct 08, 2017 2:25 am
by Benni_M
Install the widget designer on the external computer.

Create Button1 with the script

Code: Select all
KeyboardKeyPress("{LEFT}")


press the button with a widget designer device in pandoras box.

or open a udp listener in the remoting tab and send with your main widget designer

Code: Select all
UDPSendToPort(PORT,"{WDCustomScriptClick(1)}")


or with a tcp server/client.

best regards,
Benni