Skip to main content

Browser Steps

Steps in the Browser category.

Available Steps

DIGITAL_PREVIEW

Triggers the digital preview functionality

Example:


- step: DIGITAL_PREVIEW


DOCUMENT_PANEL_COMMAND

Executes an array of commands in the document preview panel (e.g. CREATE_PDF, CREATE_TOC)

Example:


- step: DOCUMENT_PANEL_COMMAND
commands:
- CREATE_TOC
- CREATE_PDF


DOWNLOAD

Downloads a file constructed from text or an existing Blob. The filename is required.

Aliases: DOWNLOAD_TEXT

Version: 1.0.6

Example:


- step: SET
text: "Some text to download"
- step: DOWNLOAD
filename: "hello.txt"


INSERT_TEMPLATE_SECTION

Creates a new section in the document using the specified template path, relative to the currently elected item

Example:


- step: INSERT_TEMPLATE_SECTION
templatePath: '/Content/Templates/My Awesome Template'
insertAfter: true


Triggers the print design preview functionality

Example:


- step: PRINT_PREVIEW


READ_CLIPBOARD

Reads content from the user clipboard. Prefers HTML content when available, falls back to plain text.

Version: 1.0.3

Example:


- step: READ_CLIPBOARD


WRITE_CLIPBOARD

Writes text to the user clipboard. Reads the content from the configured input (cfg.text) or from the default text input in the flow context.

Version: 1.0.3

Example:


- step: SET
text: "Some text to copy"

- step: WRITE_CLIPBOARD