Group: Administrators
Posts: 13K,
Visits: 104K
|
You are approaching this the wrong way. Instead of /not constraints you should use a <counter> with selection mode 'noreplace' and selection rate 'always':
<text pos1> / items = items / position = (50, 10) / fontstyle = ("Arial", 2%) / select = mycounter </text>
<text pos2> / items = items / position = (50, 20) / fontstyle = ("Arial", 2%) / select = mycounter </text>
<text pos3> / items = items / position = (50, 30) / fontstyle = ("Arial", 2%) / select = mycounter </text>
<text pos4> / items = items / position = (50, 40) / fontstyle = ("Arial", 2%) / select = mycounter </text>
<text pos5> / items = items / position = (50, 50) / fontstyle = ("Arial", 2%) / select = mycounter </text>
<counter mycounter> / select = noreplace(1-5) / selectionrate = always </counter>
<item items> /1 = "Wort1" /2 = "Wort2" /3 = "Wort3" /4 = "Wort4" /5 = "Wort5" </item>
<trial test> / stimulusframes = [1=pos1, pos2, pos3, pos4, pos4, pos5] / validresponse = (anyresponse) </trial>
|