Statement: Action, Type: Supporting
All Records Except
Format: clear-action-statement All Records Except ["record-name-1", "record-name-2", ...] record-extension
where
-
clear-action-statement = the valid action statement, Clear
-
[ = required constant left-bracket symbol [
-
record-name-1, record-name-2... = any text name of the data record enclosed in quotation marks " " that will used to reference this record separated by a comma symbol ,
-
] = required constant right-bracket symbol ]
-
record-extension = either one of the valid identifier extensions listed below:
Description
The All Records Except is a supporting action identifier that references data records listed between the brackets [] that were created with a designed system. The Clear action statement will clear all information except those data records with their respective record-extensions between the brackets. Either the data index and layout index value will be reset to 1.
Example
When initiating a new session, we want to quickly initialize all data records except the data record called progression and data record called bankroll balance prior to processing spins. The following example will perform this task.
RX Script | ![]() |
---|---|
// initialize data set list [1,2,4,6,8,16,32,64] to record "progression" data put 100 on record "bankroll balance" data // All records EXCEPT progression and bankroll balance will be initialized by the Clear action statement Clear All Records Except ["progression","bankroll balance"] data |