Skip to main content

Create Text Label Node

The Create Text Label node creates reusable text variables that can be referenced throughout your flow using label names. This node enables dynamic content management by storing text values in named labels that can be accessed by other nodes using the {{{LABEL_NAME}}} syntax.

Create Text Label node


Basic Usage

Use the Text Input, Create Text Label, and Display Text nodes for creating and displaying dynamic text variables in your flows.


Inputs

The Create Text Label node accepts the following inputs:

  • Input (left connection, red dot): The execution flow trigger.
  • Label Input (left connection, green dot): The text content to store in the label variable.

Outputs

  • Output (right connection, red dot): Continues the execution flow after the label is created.
  • Label Output (right connection, green dot): The stored label value that can be passed to other nodes.

Configuration

Label Name

Define the name of your text label variable:

  • Text Field: Enter a descriptive name for your label (e.g., "INPUT", "WORD", "USERNAME")
  • Naming Convention: Use uppercase letters for clarity, though any valid text is acceptable
  • Usage: Reference this label in other nodes using the syntax {{{LABEL_NAME}}}

Shared Variable

  • Checkbox: When enabled, the label variable becomes accessible across different branches and throughout the entire flow
  • Use Case: Useful for maintaining consistent data across parallel branches or multiple flow sections

Add Label

  • Button: Click "+ Add Label" to create additional label fields within the same node
  • Multiple Labels: You can create multiple text labels in a single Create Text Label node

Example Workflows

Simple Text Variable Display

Scenario: Capture user input, store it in a labeled variable, and display it in a formatted message.

Create Text Label Example

Steps to Create the Flow:

  1. Start with the Start Node.

  2. Add and connect a Text Input node for user input:

    • Users can type their text here
    • Connect: Start Node output (red dot) → Text Input input (red dot)
  3. Add and connect a Create Text Label node:

    i. Label Name: Enter "INPUT"

    ii. Connect: Text Input output (red dot) → Create Text Label input (red dot)

    iii. Connect: Text Input Output (green dot) → Create Text Label label input (green dot)

  4. Add and connect a Display Text node to show the labeled content:

    • In the Display Text content field, use the label reference:
    {{{INPUT}}}
    • Connect: Create Text Label output (red dot) → Display Text input (red dot)

Result: Whatever text the user enters in the Text Input will be stored in the "INPUT" label and displayed in the Display Text node. This allows for clean, reusable text variable management.