Page 1 of 1

How to launch 2 instances without dialog windows

Posted: 28 Sep 2018, 17:46
by Robert
Hi,

Maybe the answer is in the forum but i can't find it. Is there a way to avoid the dialog window when we want to launch a second instance of Ventuz?

Regards,

R

Re: How to launch 2 instances without dialog windows

Posted: 29 Sep 2018, 09:41
by Robert

Re: How to launch 2 instances without dialog windows

Posted: 12 Oct 2018, 10:13
by chriss0212
Hi Robert

another workaround in Ventuz6 is:

Code: Select all

Example()

Func Example()
    Run('"C:\Program Files\Ventuz Technology Group\Ventuz 6\VentuzPresenter_1.exe" "D:\Ventuz\Projekte\Ventuz6\Test\Test.vzp" -log:0 -default:/zwei', "C:\Program Files\Ventuz Technology Group\Ventuz 6", @SW_SHOWMAXIMIZED)
    WinWait("Test")
    Sleep(1000)
	Send("#+{Right}")
    Sleep(1000)
    Run('"C:\Program Files\Ventuz Technology Group\Ventuz 6\VentuzPresenter.exe" "D:\Ventuz\Projekte\Ventuz6\Test\Test.vzp" -log:0 -default:/eins', "C:\Program Files\Ventuz Technology Group\Ventuz 6", @SW_SHOWMAXIMIZED)

EndFunc   ;==>Example
This will open a presentation on screen 1 in director mode... will wait until its open... then move it to the second screen... and open the next presentation on screen 1 ;)

I think it only works in virtual fullscreen!

Greetings

Christian