Group: Administrators
Posts: 13K,
Visits: 108K
|
Hi Alex,
Inquisit can present stimuli of different modalities in one single trial. Make sure the stimuli are all defined in your script (using the <text> and <sound> elements) and then let the <trial> element present them in whatever order and at whatever time you wish by using the /stimulusframes or /stimulustimes attribute. For example:
<trial mytrial> /stimulustimes=[1=someinstructions; 10000=payattentiontext, payattentionsound; 20000=somemoreinstructions] / validresponse=("a", "b") / correctresponse=("a") / trialduration = 50000 </trial>
This trial presents a text stimulus right at the onset (someinstructions), after 10 seconds a message to pay attention is presented on screen (payattentiontext) along with a corresponding sound (payattentionsound), 20 seconds into the trial, additional instructions appear on screen (somemoreinstructions).
You might also want to check out the /responsetime or /responseframe attributes to tell Inquisit when to register responses in your trials.
Hope this helps, ~Dave
|