[blog] How to use multiple instances in Gig Performer 4

Thank you for the feedback! :slight_smile:

1 Like

Is this Script info posted in the forum somewhere?

EDIT: I think I found it…

They’re at the top of the blog post we’re currently commenting on:
for Windows users and for macOS users

3 Likes

Yes, I try to index all additional useful tips in the first post of the thread. Perhaps some of you will be notified via e-mail or notification that your post has been linked. :slight_smile:

You can check out other blog posts and see that there are community threads + additional tips in them.

My motto here is “Less is more” :slight_smile:

1 Like

Multiple instances in practice :slight_smile:
Link: First Gig after 2 years Covid restrictions, using GP4 only

1 Like

Hello Im trying to let the bat file load specific GP file instead of the last one used.

cd "C:\Program Files\Gig Performer 4"
start GigPerformer4.exe
start GigPerformer4.exe -in=“Guitar”
start GigPerformer4.exe -in=“Vocals”

what should I put in the first two lines of the script above to make this happen?

In other words I want this specific gig file to load with its instances when at this particular venue but a totally different gig file to load (using its own separate batch file of course) when Im going to another venue…

Thanks in advance for your assistance.

start "" "Path of the Gig file you want to load"
start GigPerformer4.exe -in=Guitar
start GigPerformer4.exe -in=Vocals

Have a different batch file for each different venue.

Thank you edm11 for the quick reply I will try that also…

I fought with it and came up with this which worked.

Ill try your method now and report back

This is how it looks now and It also works.

cd "C:\Program Files\Gig Performer 4"
start “” “C:\Program Files\Gig Performer 4\Gig(2)Ravenscroft(3).gig”
start GigPerformer4.exe -in=“BassandHorns”
start GigPerformer4.exe -in=“ELectricPiano”
start GigPerformer4.exe -in=“RavenscroftPiano”

Thanks again.

I have played my first 4 gigs using only gig perfomer and Im learning to set it up slowly. I have gotten rid of my main board modx6 and forcing myself to go fully software with gp at the helm.

So far it has been rock solid even though im using an old i5 sony vaio with 1.7 gz processor.

4 Likes

Looks like my text wasnt sent

This was how it looked after I fought with it

cd "C:\Program Files\Gig Performer 4"
start “C:\Program Files\Gig Performer 4.exe” “C:\Program Files\Gig Performer 4\Gig(2)Ravenscroft(3).gig”
start GigPerformer4.exe -in=“BassandHorns”
start GigPerformer4.exe -in=“ELectricPiano”
start GigPerformer4.exe -in=“RavenscroftPiano”

2 Likes

For cut-and-pasting people: Beware the quotes. Use

"blahblah"

instead of

“blahblah”

@Bevburn : no offense. It is probably the post-editor that changes them.

2 Likes