Group: Forum Members
Posts: 6,
Visits: 16
|
I have posttrialpause set for 2,5 seconds. What i would like to change: if the participant doesn't respond - use posttrialpause (2,5 seconds), if the participant responds - no pause. Here is the script: <trial redcontrol2> /ontrialbegin = [ values.congruency = 3; ] / timeout = 2500 / posttrialpause = 2500 / stimulustimes = [1=redcontrol, redreminder, greenreminder, bluereminder, purplereminder] / correctresponse = ("d") / validresponse = ("d", "f", "j", "k") /ontrialend = [ list.responses.insertitem(trial.redcontrol2.correct, 1); list.responses_control.insertitem(trial.redcontrol2.correct, 1); if (trial.redcontrol2.correct) { list.latencies.insertitem(trial.redcontrol.latency, 1); list.latencies_control.insertitem(trial.redcontrol2.latency, 1); } ] </trial>
|