Hello Ventuzians!
THE FORUMS ARE CLOSED!

Please join our discord server HERE!! << click me :D

We are shutting our Ventuz Forum, but don't worry, it will all be archived for you to search in if you have a query. From now on, please add all your comments, questions or observations into our Discord Server

Thanks for the great time - see you on discord!!
Dee, Karol, Daniel and the whoooole Product and Support team!

Search found 345 matches

by lerou
21 Jan 2020, 07:22
Forum: How to
Topic: Disabling a touch button after its been touched?
Replies: 2
Views: 3326

Re: Disabling a touch button after its been touched?

Use a toggle, connect its output to the touch button's enabled state. When the button's trigger fires -> turn toggle off. On scene reset -> turn toggle on.
by lerou
20 Jan 2020, 08:58
Forum: How to...
Topic: Projecting part of the screen to different part of screen
Replies: 1
Views: 12417

Re: Projecting part of the screen to different part of screen

Use a render target, render the larger aspect (let's say your LED is 16:10, your Screen is 16:9, then render 16:10) and then map the result to your two outputs the way you need them (crop 16:10 to get 16:9). This will also help you with different resolutions (one output would be scaled, naturally).
by lerou
08 Jan 2020, 10:10
Forum: How to
Topic: VMS
Replies: 9
Views: 16428

Re: VMS

LOL. I actually have Ventuz 4 installed on my system, so it worked for me.
by lerou
27 Dec 2019, 18:52
Forum: How to
Topic: VMS
Replies: 9
Views: 16428

Re: VMS

Do you have more than one network devices? Like Wifi + LAN? Or a bluetooth connection? Try disabling all but one and try again. Shouldn't be a problem when using localhost, but you never know.
by lerou
17 Dec 2019, 09:02
Forum: How to
Topic: Starting a VPR using VMSClient.Start
Replies: 3
Views: 3316

Re: Starting a VPR using VMSClient.Start

lerou wrote:
17 Dec 2019, 08:48
It should contain all projects found by the VMS Discovery.
I meant Project scan. Discovery finds VMS services in the network.
by lerou
17 Dec 2019, 08:48
Forum: How to
Topic: Starting a VPR using VMSClient.Start
Replies: 3
Views: 3316

Re: Starting a VPR using VMSClient.Start

Yes, you can start a VPR via VMSClient.Start. The project name has to match. It's NOT the VPR's file name - usually it's the filename without the extension, but that's also not always the case! Use VMSclient.Proj(null) to list your projects and have a look at them. There you'll find both the file (V...
by lerou
06 Dec 2019, 11:09
Forum: General Discussion
Topic: PLE Restrictions
Replies: 4
Views: 9859

Re: PLE Restrictions

What I have tried recently is getting data from external files eg JSON and I can't seem to get the data to update live. I also tried using the script node to process the data then bind it directly to the text node but still no live update for the text node. In all, I found that the output of every ...
by lerou
30 Nov 2019, 12:08
Forum: How to
Topic: VMS
Replies: 9
Views: 16428

Re: VMS

if on the same machine, simply connect to the local IP 127.0.0.1 using the VMS port 19401 as stated in the manual. You can use putty with settings as shown in the image. Are you getting an error?
putty.jpg
by lerou
02 Nov 2019, 09:36
Forum: How to
Topic: How to implement pinvoke in ventuz
Replies: 1
Views: 3208

Re: How to implement pinvoke in ventuz

If you know how to do it in VS, just build a wrapper library in C# and use that assembly in a Ventuz C# scripting node. Or do it directly in the scripting node. Shouldn't be a problem using DLLImport in C#.
by lerou
28 Oct 2019, 09:55
Forum: How to
Topic: Triggering Touch Objects with Keyboard Input
Replies: 3
Views: 3416

Re: Triggering Touch Objects with Keyboard Input

Emit is a method, so it's an input. You need to drag the Mover's Nudge merhod (input) to on of the Key's outgoing events (KeyDown or KeyUp)