Hi
I'm really confused about how to use 'lists'. I've tried to create a Minimal Worked Example below. I thought the aim of the 'list' element was to create a general-purpose class for storing any type of item. However, I can't seem to refer to the wordList in the wordText element. Can anyone help with this?
Thanks
Nick
<list wordList>
/ items = ("dog", "cat")
/ select = sequence
</list>
<list responseList>
/ items = ("Y", "N")
/ selectionmode = list.wordlist.currentindex
</list>
<text wordText>
/ items = list.wordList.item
/ select = sequence
</text>
<trial wordTrial>
/ stimulusframes = [1 = wordText]
/ response = list.responseList.item
</trial>
<block wordBlock>
/ trials = [1-2 = wordTrial]
</block>
<expt exptBlock>
/ blocks = [1 = wordBlock]
</expt>