/
findUnlabeled
findUnlabeled
Description
The findUnlabeled command is useful for quickly identifying unlabeled markers.
The next marker found using this command becomes the primary selected object. After finding these markers, the most likely operation is to label them.
Functional area
Data retrieval
Command syntax
Syntax
findUnlabeled [-b] [-selectRange] [-frameInView] [-continuous] |
Arguments
None
Flags
Name | Flag arguments | Argument type | Exclusive to | Comments |
---|---|---|---|---|
b | 0 | — | — | Searches backward in time instead of forward. |
selectRange | 0 | — | — | Operates only in selected time ranges. |
frameInView | ||||
continuous |
Return value
void
Examples
// In this example, findUnlabeled finds the first ten unlabeled // markers and prints time range and the name of the markers int $i; for( $i = 0; $i < 10; $i = $i + 1) { findUnlabeled -selectRange; int $range[] = `getSelectedTimeRanges`; string $sel[] = `getModules -selected`; // Range interval and name of the marker print $range[0] $range[1] $sel[0]; }
Additional information
Related commands
, multiple selections available,