UXP Toolkit
    Preparing search index...

    Photoshop Actions

    Handles the content in Actions panel. Actions panel will have a hierarchy of Action Sets that contain a list of Actions

    // Play all actions in a set
    const actionSet = app.actionTree[0]; // Get first action set
    await actionSet.play();
    // Duplicate an action set
    const actionSet = app.actionTree[0];
    const copiedSet = actionSet.duplicate();
    console.log(copiedSet.name); // Copy of [original name]
    Index

    Accessors

    Methods