Group: Administrators
Posts: 13K,
Visits: 104K
|
You need to set up a <text> element with your 28 items. You need to set up an <openended> trial element that displays said <text> stimulus and collects the response. Run that openended trial via a <block> 28 times. In addition, you'll want to specify the <data> element to log the openended's firstcharlatency property. In a nutshell:
<text mytext> / items = ("A", "B", "C", "D") / select = noreplace / position = (50%, 40%) </text>
<openended myopenended> / stimulusframes = [1=mytext] </openended>
<block myblock> / trials = [1-4=myopenended] </block>
<data> / columns = [date time subject blocknum blockcode trialnum trialcode stimulusnumber stimulusitem response latency openended.myopenended.firstcharlatency] </data>
Please also take the time to work through the tutorials included in the Inquisit documentation to familiarize with the basics of Inquisit syntax / setting up procedures with it.
|