Group: Forum Members
Posts: 6,
Visits: 22
|
Right, so the standard errormessage can only specify one stimulus. I guess I need to branch to a designated feedback trial as you suggest. However, after a few hours of fiddling around with this I can't seem to get it working. Where in the trial specification do I insert the /branch command, and how do I write the condition? The original trials are written as follows:
<trial redcongruent> /ontrialbegin = [ values.congruency = 1; ] / pretrialpause = 200 / stimulustimes = [1=redcongruent, redreminder, greenreminder, bluereminder, blackreminder] / correctresponse = ("d") / validresponse = ("d", "f", "j", "k") / errormessage = true(x, 400) /ontrialend = [ list.responses.insertitem(trial.redcongruent.correct, 1); list.responses_congruent.insertitem(trial.redcongruent.correct, 1);
if (trial.redcongruent.correct) { list.latencies.insertitem(trial.redcongruent.latency, 1); list.latencies_congruent.insertitem(trial.redcongruent.latency, 1); } ] </trial>
|