CALLMACRO / MACRO
This is a “helping” user action, which lets you call a macro, but specifically with the use of variables.
- Example:
- You have a specific macro for each track (1-4) called.
$TRACK-1$
$TRACK-2$
$TRACK-3$
$TRACK-4$
Now you want to call one of these macros depending on a variable
%TRACKNUMBER% = 2
and
$TRACK-%TRACKNUMBER%$
which does not work unfortunately.
With the user action callmacro
or macro
you can do it, because you don’t need the $ signs:
macro TRACK-%TRACKNUMBER%
Depending on your setup this might saves you tons of time and makes you set more efficent. I came across this on a Q&A and I discovered I had the user action lying on my shelf since quite a while.