The selectionMode attribute determines the method by which individual items are selected for presentation on a given trial. The default is random selection of items without replacement with uniform probability.
or
/ selectionMode = valueName | Type | Description | ||||||
---|---|---|---|---|---|---|---|---|
selectionmode | selectionmodeenum |
|
||||||
value | value | An expression returning the selected index. |
The default value is random.
The following first selects Washington, then Adams, and then Jefferson:
<list presidents>
/ items = ("George Washington", "John Adams", "Thomas Jefferson")
/ selectionMode = sequence
</list>