Goto
2 posts tagged with "Goto"
.text
element
(.t)
The .text action displays text in the UI. It belongs to the text category within the ui area.
Action Syntax
.text "text"
A quoted text string
.text $variable
A variable name starting with $
Valid sizes
tiny
small
medium
large
extra
Styles
.tight
minimal line spacing
.text.tight "example text"
Modifiers
goto
The .text action supports the goto modifier.
Examples
// Basic Usage
.text "hello world"
// Using Variables
// Display dynamic content from variables
.text $eventname
// With Styles
// Apply the .tight style modifier
.text.tight "example text"
Additional Notes
.text action is the most fundamental way to display content in Rhappsody apps. It’s lightweight and performant, making it ideal for:
.top-appbar
element
(.appbar)
The .top-appbar action displays a standard top app bar. It belongs to the navbars category within the ui area.
Action Syntax
.top-appbar "text"
A quoted text string
.top-appbar $variable
A variable name starting with $
.top-appbar !set:icon "text"
An icon in format !set:name followed by A quoted text string
.top-appbar !set:icon $variable
An icon in format !set:name followed by A variable name starting with $
.top-appbar +imagetag "text"
An image tag starting with + followed by A quoted text string
.top-appbar +imagetag $variable
An image tag starting with + followed by A variable name starting with $
.top-appbar +imagetag "text" !set:icon
An image tag starting with + followed by A quoted text string followed by An icon in format !set:name
.top-appbar +imagetag $variable !set:icon
An image tag starting with + followed by A variable name starting with $ followed by An icon in format !set:name
Valid sizes
tiny
small
medium
large
extra
Modifiers
goto
The .top-appbar action supports the goto modifier.