Is the Tonex amp model selection unavailable for external control?
Using the Tonex UI for amp selection (as this gig does) is certainly a fine presentation, and possibly what is most generally desirable.
However, if I’m understanding the situation correctly, the one thing we lose by not having a widget connected to amp model selection is that rackspace variations cannot offer access to different amp sims.
Instead, we have to create a new rackspace for every different amp that we want to have available via GP selection mechanisms. Am I correct or mistaken about this?
The only option that I found that allows me to change tonex amps is to use amplitube (ik multimedia), save your presets there and then use PC messages to select presets directly. But I found that very cumbersome and error prone.
I much prefer using multiple rack spaces, each for a different amp.
I have been using Tonex and saving different amp model selections as GP presets. I can then simply call the presets up using a widget selector using script as desired to then save as a variation. Works like a charm. Found the script on the forum.
Function LoadPresetT1Immediately()
PRESET_T1 = PRESETS[ScaleRange(GetWidgetValue(PRESET_SELECT_T1), 0, Size(PRESETS_T1)-1)]
LoadGPPreset(T1_Plugin, PRESET_T1)
LAST_PRESET_T1 = PRESET_T1
SetEnvVariable (“Preset”, PRESET_T1)
End
Initialization
Var i : Integer
SetEnvVariable (“Preset”, “-”)
PRESETS_T1 = GetGPPresetList(T1_Plugin, 0)
LoadPresetImmediately()
End
On WidgetValueChanged(newValue : double) from PRESET_SELECT_T1
PRESET_T1 = PRESETS_T1[ScaleRange(newValue, 0, Size(PRESETS_T1)-1)]
SetWidgetLabel(PRESET_SELECT_T1, PRESET_T1)
SetEnvVariable (“Preset”, PRESET_T1)
LAST_TIME = TimeSinceStartup()
SetTimersRunning(true)
End
On TimerTick(ms : double)
if ms - LAST_TIME > PRESET_ACTIVATE_DELAY then
if PRESET_T1 <> LAST_PRESET_T1 then
LoadGPPreset(T1_Plugin, PRESET_T1)
end
LAST_PRESET_T1 = PRESET_T1
SetTimersRunning(false)
end
end