Group: Forum Members
Posts: 32,
Visits: 73
|
Dear all, right now I am programming my first inquisit program. Within the learning trial subjects shall be presented a string of letters. After presentation, subjects are asked to write down the string of letters. If they do not write the string down correctly, they are presented the same string of letters again. Generally, they have the opportunity to reread the actual string of letters three times. Afterwards, a new string of letters is presented (the other one does not appear again). At the moment, the expermiment does not allow to right down any letters during the learning trial. Could anybody help me please with this problem? I hope that it my programmed text does not present total trash :-) . Thank you very much in advance! And best greetings.
The learning trials look like this (I programmed one trial for each string of words) <trial MXRVXT> / stimulustimes = [1=fixation;1000=MXRVXT] / beginresponsetime = 1000 / inputdevice = keyboard / correctresponse = (MXRVXT) /pretrialpause = 500 /branch = [if (trial.MXRVXT.correct) 0] /branch = [if (trial.MXRVXT.count > 3) 0] </trial> <trial VMTRRRR> / stimulustimes = [1=fixation;1000=MXRVXT] / beginresponsetime = 1000 / correctresponse = (MXRVXT) /pretrialpause = 500 /branch = [if (trial.MXRVXT.correct) 0] /branch = [if (trial.MXRVXT.count > 3) 0] </trial>
and the programmed block is here:
<block training> / trials = [1-16 = noreplace(MXRVXT, VMTRRRR, MXTRRR, VXVRMXT, VXVRVM, VMRVVVV, MXRTMVR, VMRMXTR, MXR, VMRVXVR, MVRVM, VMRMVRV, VMRMVXR, MXRTVXT, MXRMVXR, MVXTR)] / bgstim = (schreiben_erinnerung) /preinstructions = (welcome, training_instruction) </block>
|