Exec
10 posts tagged with "Exec"
break
The break action breaks / halts app execution for debugging. It belongs to the exec category within the system area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
break
continue
The continue action continues running the app block (usually) after a wait. It belongs to the exec category within the system area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
continue
delay
The delay action delays or sleeps for a specified amount of time. It belongs to the exec category within the system area.
Action Syntax
delay 30m
delay $variable
Valid sizes
Examples
// Basic Usage
delay 3s
// Using Variables
// Display dynamic content from variables
delay $time
host-call
The host-call action call a function at the host / parent level. The environment is usually the browser to server javascript run time global environment. It belongs to the exec category within the system area.
Action Syntax
host-call "text"
host-call "text" $variable
host-call "text" $variable $variable
Return Value
This function returns a
reload
The reload action reloads/refreshes browser window. Restarts app from scratch. It belongs to the exec category within the system area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
reload
resume
The resume action resumes as flow (after wait/break/pause). It belongs to the exec category within the system area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
resume
return
The return action return values. It belongs to the exec category within the system area.
Action Syntax
return $variable
return "text"
return 123
return true|false
return IT
Valid sizes
Examples
// Basic Usage
return $varname
run
The run action runs a block one time. It belongs to the exec category within the system area.
Action Syntax
run [file]
run $variable
Valid sizes
Examples
// Basic Usage
run [block]
// Using Variables
// Display dynamic content from variables
run $blockvar
wait
The wait action wait for interaction before continuing. It belongs to the exec category within the system area.
Action Syntax
This action accepts various parameters. See the examples below for usage patterns.
Valid sizes
Examples
// Basic Usage
wait
waitfor
The waitfor action waits for a value from an input into a variable. It belongs to the exec category within the system area.
Action Syntax
waitfor
This action takes no parameters and is used as a bare command.
Description: waits for input
Valid sizes
Examples
// Basic Usage
waitfor