Group: Administrators
Posts: 13K,
Visits: 104K
|
You can define two additional list elements (one for hposition, one for vposition) and link them to the 1st list. EDITED Here's a full example with <text> elements (it works the same for <picture>s):
<block myblock> / trials = [1-10 = mytrial] </block>
<trial mytrial> / ontrialend = [list.mylist.reset(); ] / stimulusframes = [1=txt1, txt2, txt3, txt4] / validresponse = (57) </trial>
<text txt1> / items = myitems / select = list.mylist.nextindex / hposition = list.hpos.nextvalue / vposition = list.vpos.nextvalue </text>
<text txt2> / items = myitems / select = list.mylist.nextindex / hposition = list.hpos.nextvalue / vposition = list.vpos.nextvalue </text>
<text txt3> / items = myitems / select = list.mylist.nextindex / hposition = list.hpos.nextvalue / vposition = list.vpos.nextvalue </text>
<text txt4> / items = myitems / select = list.mylist.nextindex / hposition = list.hpos.nextvalue / vposition = list.vpos.nextvalue </text>
<item myitems> / 1 = "A" / 2 = "B" / 3 = "C" / 4 = "D" / 5 = "E" / 6 = "F" / 7 = "G" / 8 = "H" / 9 = "I" / 10 = "J" </item>
<list mylist> / poolsize = 10 / selectionrate = always </list>
<list hpos> / items = (5%,10%,15%,20%,25%,75%,80%,85%,90%,95%) / selectionmode = list.mylist.currentindex / selectionrate = always </list>
<list vpos> / items = (5%,10%,15%,20%,25%,75%,80%,85%,90%,95%) / selectionmode = list.mylist.currentindex / selectionrate = always </list>
|