File
4 posts tagged with "File"
.upload-file-input
element
The .upload-file-input action Creates a labeled file upload button with icon and text. It belongs to the file category within the system area.
Action Syntax
.upload-file-input "text"
A quoted text string
.upload-file-input !set:icon "text"
An icon in format !set:name followed by A quoted text string
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$any = .upload-file-input "Label"
Action code: 905713327
Version: 0.6.4-11
Last updated: 2025-06-13
load-binary-file
function
The load-binary-file action Loads binary data from a URL into a variable. It belongs to the file category within the system area.
Action Syntax
load-binary-file https://...
A valid URL
load-binary-file $variable
A variable name starting with $
Return Value
This function returns a
VARREC
value that can be stored in a variable:
$result = load-binary-file
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$varrec = load-binary-file https://someurl
Action code: 4248279081
Version: 0.6.4-3
Last updated: 2025-06-13
load-json-file
function
The load-json-file action Loads JSON data from a URL into a variable. It belongs to the file category within the system area.
Action Syntax
load-json-file https://...
A valid URL
load-json-file $variable
A variable name starting with $
Return Value
This function returns a
VARREC
value that can be stored in a variable:
$result = load-json-file
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$varrec = load-json-file https://someurl
Action code: 1155849997
Version: 0.6.4-1
Last updated: 2025-06-13
load-text-file
function
The load-text-file action Loads text content from a URL into a variable. It belongs to the file category within the system area.
Action Syntax
load-text-file https://...
A valid URL
load-text-file $variable
A variable name starting with $
Return Value
This function returns a
VARREC
value that can be stored in a variable:
$result = load-text-file
Valid sizes
tiny
small
medium
large
extra
Examples
// Basic Usage
$varrec = load-text-file https://someurl
Action code: 2064732273
Version: 0.6.4-1
Last updated: 2025-06-13