Hi,
I’m trying to make a simple batch file to run two instances of vvvv. Then load a first patch on the first instance, and a second patch on the second instance without sucess.
This start the two instances
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple
But then how to open the two .v4p ?
Thanks in advance for your help
joreg
November 13, 2012, 2:52pm
#2
try
/o patch1.v4p
/o patch2.v4p
m4d
November 13, 2012, 2:54pm
#3
start vvvv.exe /o "your_patch_here.v4p" /allowmultiple
edit: meh, too late…
Thanks a lot Joreg !
Fast, easy, working great. I like that :)
So a complete example batch :
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple /o C:\Users\L412\Desktop\callmenames1.v4p
start C:\Progra~1\vvvv_45beta27.2\vvvv.exe /allowmultiple /o C:\Users\L412\Desktop\callmenames2.v4p
EDIT :
Thanks to m4d too !
1 Like