Announcements
3 posts tagged with "Announcements"
.announcement
element
The .announcement action shows an in-app top banner announcement. It belongs to the announcements category within the interaction area.
Action Syntax
.announcement "text"
A quoted text string
.announcement $variable
A variable name starting with $
.announcement blk
A value
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
.announcement "message"
// Using Variables
// Display dynamic content from variables
.announcement $message
Action code: 2824550376
Version: 0.6.4
Last updated: 2025-06-13
clear-announcement
The clear-announcement action clears announcement from an app if it exists. It belongs to the announcements category within the interaction area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
clear-announcement
Action code: 1246278388
Version: 0.6.4-0
Last updated: 2025-06-13
set-announcement
function
The set-announcement action sets an app wide banner announcement. It belongs to the announcements category within the interaction area.
Action Syntax
set-announcement "text"
A quoted text string
set-announcement $variable
A variable name starting with $
set-announcement blk
A value
Return Value
This function returns a
RESPONSE
value that can be stored in a variable:
$result = set-announcement
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$response = set-announcement "text"
Action code: 4096517870
Version: 0.6.4
Last updated: 2025-06-13