Toggle

From Sierra WikiNew
Revision as of 00:19, 3 June 2024 by Andrew Branscom (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The toggle command toggles a flag's value.

Syntax

toggle(flg fA);

Remarks

Toggles flag fA (from FALSE to TRUE or TRUE to FALSE).

Possible Errors

Changing values of reserved flags can have unpredictable results, and should be done carefully.

Example

Code:
set(f99);    [ now f99 = TRUE
toggle(f99); [ now f99 = FALSE

Technical Information

Required Interpreter Version: Available in all AGI versions.
Byte-Code Value: 14 (0x0E hex)

See Also

Flag Commands