Need help for my first gig using Gig Performer

Hi everyone,

I’m new on this forum and a new user of the GigPerformer sotfware,
At the end of the month I have my first gig (first part of a show) and I want to use GigPerformer?
I’m using a Behringer UMC204HD where I plug two electric guitars which use Helix Native in order to add some effects.
I also use the Audio File Player in order to launch Backing Tracks for those guitars.
But I’m facing a problem, I don’t know how to launch backing track on variation change for example, I also don’t know how to add multiple actions on a single button widget (changing effect on helix native, bypass a plugin etc…)
If you have any idea on how to setup I take it ! :slight_smile:

Thanks for all !

I also don’t know how to add multiple actions on a single button widget (changing effect on helix native, bypass a plugin etc…)

That is easy: Create some widgets, each assigned to the desired plugin parameter.
Then give the widgets the same widget group.
As soon as you control a widget all widgets in the same widget group react.

To start the audio player when you switch to a variation, you can use scripting - in this example the rackspace has 2 variation and when the 2nd variation is selected the audio player is triggered

Var
PLAYBACK : Widget
on Variation (old: integer, new:integer)
if new == 1 then
SetWidgetValue(PLAYBACK, 1.0)
end
end

1 Like