Deprecated Replaced by items
Returns an item from a stimulus item set.
<counter> <item> <list> <button> <clearScreen> <clock> <html> <picture> <port> <shape> <sound> <systemBeep> <text> <video> <xid>
object.name.item
Read/Write
stringarray
This is a list property.
The following displays the value of the first item in a text stimulus:
<text myText>
/ items= ("item = <% text.myText.item(0) %>")
</text>
The following displays the value of the first item in an item set:
<item negativeItems>
item = <% item.negativeItems.item(0) %>
</page>
The following displays the value of the first item in a list:
<list rankedPreferences>
item = <% list.rankedPreferences.item(0) %>
</page>