The response attribute specifies the procedure for obtaining responses from the subjects.
<block> <expt> <likert> <openended> <slidertrial> <trial>
or
/ response = timeout(milliseconds)or
/ response = window(center, width, stimulusname)or
/ response = responsemoderesponsename | The name of a response element defined elsewhere in the script. | ||||||||||
milliseconds | A property or positive integer specifying the duration in milliseconds. | ||||||||||
center | A positive integer specifying the center of the response window. | ||||||||||
width | A positive integer specifying the width of the response window. | ||||||||||
stimulusname | The name of a stimulus element defined elsewhere in the script. | ||||||||||
responsemode |
One of the following values:
|
None.
The following trial sets the timeout to a parameter value:
<trial mytrial>
/ stimulusframes = [1=sometext]
/ response = timeout(parameters.timeout)
/ validresponse = (" ", noresponse)
</trial>
The following trial requires the subject to respond correctly (with the "a" key) in 1500 ms before moving on to the next trial:
<trial mytrial>
/ stimulusframes = [1=sometext]
/ response = timeout(1500)
/ validresponse = ("a", "b")
/ correctresponse = ("a")
</trial>