Replies: 1 comment
-
Hi @mcvc968, sorry for the slow reply. Not sure if a response to this question would still be helpful, but thought I'd suggest something anyway. What I would do is make the following modifications to the audio-keyboard-response plugin:
var response = {
rt: [],
key: []
};
response.rt.push(info.rt);
response.key.push(info.key);
if (trial.response_ends_trial && (info.rt > 1000)) {
end_trial();
} |
Beta Was this translation helpful? Give feedback.
-
Hi,
I just wanted to ask how the plugins (particularly the audio-keyboard-response plugin) keeps track of time since the start of each trial.
I am trying to make it such that in the first second of every trial a response is noted but does not end the trial. After that one second I want to change response-ends-trial parameter such that a response would end the trial. Any help with this would be really appreciated.
Thanks in advance and thanks for all the help thus far.
Beta Was this translation helpful? Give feedback.
All reactions