Page 1 of 1

Faders as TCPSend

PostPosted: Sat Feb 06, 2021 5:45 pm
by thommitechnik
Hi@all,

I'm using the Widget Designer 6.5.0 under Windows 10. And I'm programming a Studio-Setup at the moment. What's going on real well. But, I'm struggling on one thing:

with Custom Scripts I can also trigger a lot of things in vMix 24. And I would also like to use the audio-capabilities in vMix. And so I would like to bring also faders on on one page. But with the fader-widget there's no ability to bring on the "TCPSend"-command. Is this right, or am I doing something wrong, overseeing one thing? Same for encoder.

Thanks for any hints, and regards
Thomas

Re: Faders as TCPSend

PostPosted: Sat Feb 06, 2021 10:21 pm
by justyn roy
1. Create a device in the "Devices" area
Devices-Configuration.png

Make sure you label it something that is unique and makes sense.
(Add it as either a server or client as you need)

2. Create your fader - set its min and max values

3. Create an "Action Node"
In the Action Node, watch your Fader's value like this (in the top text input):
Code: Select all
Fader1.Value


4. In the bottom, type the command that the vMix needs to see, including your number:
Code: Select all
FaderTCPDevice.Send("Fader1 = " + Fader1.Value.Round(0) + "[LF]")


Done!

I've got this set up using Putty to test with and it's working great!

Good luck!

Re: Faders as TCPSend

PostPosted: Sun Feb 07, 2021 9:33 am
by thommitechnik
Aaahhhh :) Thanks Justyn, I'll give it a try.

Thanks, and regards, Thomas