Replies: 2 comments 3 replies
-
I came across the same issue with Seems they now have a generic approach to assigning any setting value to any source. Try the snippet below, it worked with obs.call("SetInputSettings", {
inputName: "text box name",
inputSettings: {
text: "0",
},
}); |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm trying to do the same thing but by sending a json with node-red, i tried to understand the documentation, tried several things like : or : But nothing works. Thank you |
Beta Was this translation helpful? Give feedback.
-
in protocol version 4.9.1(windows), I was modifying it like this,
obs.send('SetTextGDIPlusProperties', { 'source': 'text box name', 'text': '0' })
How should I modify it after version 5.0.0?
Beta Was this translation helpful? Give feedback.
All reactions