Premiere UXP - Basic methods

Can’t seem to figure out if UXP is able to do a couple of things:

  • move projectItems to a specific bin
  • rename a projectItem (specifically, a sequence)
  • duplicate a sequence and set a custom name

For

  • move projectItems to a specific bin

You can use rootItem.createMoveItemAction(movedItem, binItem) which allows for moving the input movedItem into the input binItem.

  • rename a projectItem (specifically, a sequence) with custom name

You can rename the projectItem by using ppro.Metadata.createSetProjectMetadataAction(seqProjectItem, newMetadata, ["Column.Intrinsic.Name"]) API. You will need to get original metadata from projectItem to be renamed by projectItem.getProjectMetadata() and use uxp’s xmp API to set the name property with your custom name like

let projectItemMetadata = await ppro.Metadata.getProjectMetadata(
        projectItem
      );
let newMetadata = new XMPMeta(projectItemMetadata);
newMetadata.setProperty("http://ns.adobe.com/premierePrivateProjectMetaData/1.0/", "Column.Intrinsic.Name", newName);
// then use ppro.Metadata.createSetProjectMetadataAction(seqProjectItem, newMetadata, ["Column.Intrinsic.Name"]) to create action and execute the action
  • duplicate a sequence and set a custom name

You can use sequence.createCloneAction() to duplicate a specific sequence. Then, you can use createSetProjectMetadataAction to find and set a custom name for the cloned sequence as suggested above.

3 Likes