Premiere Pro UXP DOM API: No way to add or rename tracks
Currently, the VideoTrack and AudioTrack classes expose a read-only name property but provide no way to rename tracks programmatically. In ExtendScript/CEP, track renaming was straightforward via direct property assignment (app.project.activeSequence.videoTracks[i].name = "newName"), but this capability has no UXP equivalent.
Requested API:
Add a createSetNameAction(inName: string): Action method to both VideoTrack and AudioTrack, consistent with the existing Action pattern used by AudioClipTrackItem.createSetNameAction, VideoClipTrackItem.createSetNameAction, and ClipProjectItem.createSetNameAction.
Thanks!
