Skip to content

Alphabetic Scale

What It Does

The Alphabetic Scale node generates alphabetic characters (A through Z) based on an index value. It can output uppercase or lowercase letters and allows for optional prefix and suffix strings to be added to the result.

Inputs

NameDescriptionTypeRequired
IndexLetter index (0 = A, 1 = B, etc.)NumberYes
UppercaseOutput in uppercase (true) or lowercase (false)BooleanNo
PrefixOptional text to add before the letterStringNo
SuffixOptional text to add after the letterStringNo

Outputs

NameDescriptionType
ValueThe generated alphabetic value with optional prefix and suffixString

How to Use It

  1. Drag the Alphabetic Scale node into your graph.
  2. Connect a number to the "Index" input or set it directly (0-25 for A-Z).
  3. Configure the optional inputs:
    • Set "Uppercase" to true for uppercase letters, false for lowercase.
    • Add a "Prefix" and/or "Suffix" if needed.
  4. The node will output the corresponding letter with any prefix and suffix applied.

Tips

  • The index is clamped between 0-25 (the length of the English alphabet).
  • Use this node in combination with Count or Range nodes to generate sequential lettering.
  • For multi-letter naming (AA, AB, etc.), you may need to use multiple nodes or custom logic.

See Also

Use Cases

  • Variant Naming: Create alphabetic variants for design elements (Option A, Option B, etc.).
  • Hierarchical Naming: Generate alphabetic prefixes for hierarchical structures in designs.
  • Sequential Identification: Create alphabetic identifiers for ordered elements in a design system.