For Each Track
Iterates tracks of a sequence (filtered by kind and order). If you provide indexVar, the block also exposes the current zero-based iteration index. Use kind to limit which item type the block should include. If sequence is omitted, the block uses the active sequence when supported.
Inputs
| Input | Required | Value Kind | Types | Enum Values |
|---|---|---|---|---|
trackVar | yes | string | — | — |
indexVar | no | string | — | — |
sequence | no | expression | — | — |
kind | no | expression | — | — |
order | no | expression | — | — |
Notes
- Iterates tracks of a sequence (filtered by
kindandorder).
Examples
Iterate All Video Tracks
Iterates all video tracks in the active sequence and collects their names.
Topics: track iteration, sequence inspection
Source: patterns/ex-tracks-iterate-active-video.json
Traverse Nested Sequences With Deduped Worklist
Traverses the active sequence and nested sequences through a pending/seen worklist so nested sequence refs are not processed twice.
Topics: sequence traversal, nested sequences, clip iteration, lists
Source: patterns/ex-sequence-traverse-nested-deduped.json