Group: Administrators
Posts: 13K,
Visits: 104K
|
<trial late> /isvalidresponse = [(50)] </trial>
is invalid syntax (same issue as outlined previously).
< trial era > /stimulusframes = [1=era, erastim] /timeout = 15000 / isvalidresponse = [trial.late.response == 44 && trial.late.latency < 2000] /responsetrial = (" ", method) </trial>
nowhere do you actually run <trial late>. Thus you cannot expect the above /isvalidresponse to do anything.
<trial first> / stimulusframes = [1=mytext] / validresponse = (44) / branch = [trial.second] </trial>
<trial second> / validresponse = (50) / iscorrectresponse = [trial.second.latency < 2000] </trial>
<block myblock> / trials = [1=first] </block>
<text mytext> / items = ("Press Z and then M within 2 seconds.") / erase = false </text>
|