WinScript Live Command Reference Page 70
BitAnd
Take the bitwise AND of a Variable and a value. This value can be a constant value or another
Variable. Acceptable variable types are Integer and Timecode. Timecode variables will be
converted into number of frames. For example, a Variable with a value of 3 (0011) and a
contestant with a value of 1 (0001) would give a result of 1 (0001).
Constant value <or> Name of
another Variable
BitOr
Take the bitwise OR of a Variable and a value. This value can be a constant value or another
Variable. Acceptable variable types are Integer and Timecode. Timecode variables will be
converted into number of frames. . For example, a Variable with a value of 8 (1000) and a
contestant with a value of 1 (0001) would give a result of 9 (1001).
Constant value <or> Name of
another Variable
Mod
Multiply a Variable by a value. This value can be a constant value or another Variable.
Acceptable variable types are Integer, Decimal, and Timecode. Timecode variables will be
converted into number of frames.
Constant value <or> Name of
another Variable
Concat
Concatenate a string-type variable with another variable or constant string value. The result is
stored in the first variable.
Constant value ie: "Hello" <or>
Name of another Variable
Format
Create an ASCII string using other variables as inputs to the string. This is similar to the sprintf
function found in C.