Does anyone know how to set a default wave slope/type? I do VO's and every recording, I have to click twice to modify the default of linear to logarithmic, etc.
Thx
Default fade slope/type?
-
- KVRist
- 358 posts since 3 Dec, 2004
I don't think there's a way, but this macro may help. It should globally set the crossfades, auto crossfade, and sync (which is probably remap on tempo change). Hopefully you would just have to use it once per edit. Just use whichever settings you want and delete the lines (at the bottom) you don't. You'll have to figure out what number you want for the fades (1-4, I think. 1 is the linear fade).
Code: Select all
//Global Fade Type
var tracks = Tracktion.getEditElements ('track');
//var tracks = Tracktion.getSelectedEditElements ('track');
if (tracks.length == 0)
Tracktion.showMessage ('No tracks selected');
for (var i = 0; i < tracks.length; ++i)
{
var track = tracks[i];
var clips = Tracktion.getClipsFromTracks (track);
for (var c = 0; c < clips.length; ++c)
{
clips[c].setProperty ('fadeOutType', '1');
clips[c].setProperty ('fadeInType', '1');
clips[c].setProperty ('autoCrossfade', '1');
clips[c].setProperty ('sync', '1');
}
}
