Tutorial

Getting Started with Macros

Macro Editor

User Interface

Menus and Toolbar

Editing Macros

Macro Debugging

How To

Using variables

Finding and modifying objects

Creating new page content

Asking for user input

Storing persistent data

Using binary data

Sorting objects

Macro menus

Bulleted and numbered lists

Sample Macros

Concepts

Expressions

Objects

Properties

Variables

Data Types

Arrays

Functions

Literals

Operators

Comments

Last updated on: September 02, 2024
Also available as a single HTML file

Onetastic Macro Documentation > Statements > default

default Statement

Description

Executes a set of statements if values of none of the case statements are equal to the value of the parent switch statement. If a break statement is not found inside a default statement, then execution continues into the next case statement, if any exists.

Syntax

default: Statements...

Examples

switch ($x) case 0: // Handle when $x is 0 // Make sure to have a break at the end of a case // or it will fall through to the next case // See handling of cases 1-3 below as an example break case 1: case 2: case 3: // Handle when $x is 1, 2, or 3 break case 4: // Handle when $x is 4 break default: // Handle all other cases

See Also

Reference

Statements

Hierarchy Objects

Page Objects

Other Objects

Functions

Array Functions

Color Functions

Data Store Functions

Date/Time Functions

Dialog Box Functions

Macro Execution Functions

Macro Menu Functions

Object Functions

Special Functions

String Functions

Window Functions