Takes an AppleScript list containing 2 values. The values can be numbers, or they can be strings with identifiers telling XTension what kind of values they are. The return is the result of performing a bitwise OR on the 2 values.
bitwiseor (list: 2 values either numbers or text with number format specifiers, see below)
returns number
By using these prefixes to the number string this command can work with decimal numbers, binary numbers, hexadecimal numbers even octal numbers.
set myOrValue to (bitwiseOr {55, 95}) set myOrValue to (bitwiseOr {32, “&h22”}) set myOrValue to (bitwiseOr {“&b1101011”, “&o23”})