up Inquisit Language Reference

beginresponseframe attribute

Specifies the stimulus frame number at which Inquisit begins Registering responses.

Member of

<likert> <openended> <slidertrial> <trial>

Syntax

/ beginresponseframe = integer expression

Parameters

integer expression The frame number, or -1 to recognize all responses made during the trial.

Remarks

The beginresponseframe attribute enables tasks that allow subjects to respond before or during the presentation of stimuli. By default, Inquisit recognizes responses that occur after all stimulus frames have been presented. Responses given prior to or during presentation are ignored. Values 0 and 1 both refer to the first frame. A value of -1 tells Inquisit to recognize responses given at any point during the trial. Response latency is measured relative to the point specified by beginresponseframe, which is the beginning of the trial if set to -1.

Examples

The following trial presents a sequence of stimuli, allowing the subject to respond at any point during the sequence:

<trial mytrial>
/ stimulusframes = [1=sometext1; 10=sometext2; 20=sometext3; 30=sometext4; 40=sometext5]
/ beginresponseframe = 0
/ validresponse = (" ")
</trial>

The following trial presents a sequence of stimuli, allowing the subject to respond at any point after the 3rd stimulus is presented but not before:

<trial mytrial>
/ stimulusframes = [1=sometext1; 10=sometext2; 20=sometext3; 30=sometext4; 40=sometext5]
/ beginresponseframe = 20
/ validresponse = (" ")
</trial>

Send comments on this topic:
Copyright Millisecond Software, LLC. All rights reserved.