PDA

View Full Version : ? change preset within script ?


stevoj
10-28-2009, 02:37 PM
Hi Jeff,

Is it possible to call a new preset from within a script ? If so, could you show me the syntax.

(I want to do this, because I'm still struggling to find a way of doing an unrounded SUSinsert while in quantize mode).

Many Thanks.

Stephen

Per Boysen
10-28-2009, 10:28 PM
Certainly! I don't do that anymore but earlier on I used this script:

!name GB44

Setup Setup 4/4
set midiConfig "4/4"
next

Actually this is a workaround: You are in fact calling up a Track Setup but the thing is that in a Track Setup you can specify a default Preset to go with it.

Jeff
10-28-2009, 11:36 PM
These also work:

Preset <name>
Preset <number>

Where <name> is the name of the preset, for example:

Preset Default Preset

Where <number> is the number of the preset as they appear in Preset
menu, numbered from 1, for example:

Preset 2

stevoj
10-29-2009, 09:52 AM
Oh, simple. Thanks guys.