Indicates whether a recording of audio is captured during the expt, block, or trial.
<block> <expt> <likert> <openended> <slidertrial> <survey> <surveypage> <trial>
A value of true or 1 indicates the soundcapture will be saved, false or 0 indicates it will not. Changes to this property must be made before the expt, block, or trial runs.
The following displays the value of soundcapture in a text stimulus:
<text sometext>
/ items= ("soundcapture = <% trial.q1.soundcapture %>")
</text>
The following displays the value of soundcapture in an instruction page:
<page somepage>
soundcapture = <% trial.q2.soundcapture %>
</page>
The following enables recording if the subject was taking longer than expected in the last block:
<block myblock>
/ trials=[1-5=practicetrial; 6-10=testtrial)]
/ onblockbegin=[if (values.lastblockreponsetimes > 1000) block.myblock.soundcapture = true]
</block>