Group: Administrators
Posts: 13K,
Visits: 104K
|
There is some logic in the "increase" and "decrease" <trial> elements' /ontrialbegin or /ontrialend attributes that injects the "error" stimulus. You need to remove that logic. The specific lines of code in question are
<trial practiceincrease> /inputdevice = mouse /ontrialbegin = [if (values.expcondition == 1 && values.targetformat == "l") trial.practiceincrease.insertstimulustime(text.error, 0)] /ontrialbegin = [if (values.expcondition == 2 && values.targetformat == "p") trial.practiceincrease.insertstimulustime(text.error, 0)] ... </trial>
and
<trial practicedecrease> /inputdevice = mouse /ontrialbegin = [if (values.expcondition == 1 && values.targetformat == "p") trial.practicedecrease.insertstimulustime(text.error, 0)] /ontrialbegin = [if (values.expcondition == 2 && values.targetformat == "l") trial.practicedecrease.insertstimulustime(text.error, 0)] ... </trial>
respectively.
|