Group: Administrators
Posts: 13K,
Visits: 104K
|
What you want to pair are the stimuli presented by the <trial> and the <openended> respectively. This you'll find covered in the "How to present stimulus pairs" topic in the documentation. In short:
<block myblock> / trials = [1-4=sequence(mytrial, myopenended)] </block>
<trial mytrial> / stimulusframes = [1=trialstimulus, trialdescription] / validresponse = (57) </trial>
<openended myopenended> / stimulusframes = [1=openendedstimulus, openendeddescription] / position = (50%, 80%) </openended>
<text trialstimulus> / items = stimitems </text>
<text trialdescription> / items = trialdescriptionitems / select = text.trialstimulus.currentindex / position = (50%, 60%) </text>
<text openendedstimulus> / items = stimitems / select = text.trialstimulus.currentindex </text>
<text openendeddescription> / items = openendeddescriptionitems / select = text.trialstimulus.currentindex / position = (50%, 60%) </text>
<item stimitems> / 1 = "A" / 2 = "B" / 3 = "C" / 4 = "D" </item>
<item trialdescriptionitems> / 1 = "Description A (Trial)" / 2 = "Description B (Trial)" / 3 = "Description C (Trial)" / 4 = "Description D (Trial)" </item>
<item openendeddescriptionitems> / 1 = "Description A (Openended)" / 2 = "Description B (Openended)" / 3 = "Description C (Openended)" / 4 = "Description D (Openended)" </item>
|