Skip to main content
tkusmick_ea
Participant
March 27, 2026
Open for Voting

Premiere Pro UXP DOM API: No way to add or rename tracks

  • March 27, 2026
  • 0 replies
  • 4 views

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!