Description
Return the name of the currently active clip.
Useful when querying the scene for the currently active clip.
Functional area
Data retrieval
Command syntax
Syntax
getActiveClip |
Arguments
None
Flags
None
Return value
string
Examples
//create 2 Clips
create Clip "Clip_A" "Clip_B";
//index the Clip
string $clip = `getActiveClip`;
//print the currently active Clip
print $clip;