...
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
toClip | 1 | string | — | Name of the clip you want the modules to be added to. If not specified, then modules will be added to the active clip. |
Return value
void
Examples
Code Block | ||
---|---|---|
| ||
// create a Clip and a Marker |
...
create Clip "clip1"; |
...
create Marker "marker1"; |
...
...
// create a 2nd Clip |
...
create Clip "clip2"; |
...
...
// add marker1 to clip2 |
...
addToClip marker1 -toClip clip2; |
Additional information
Related commands
...