bool OnSilentRecordingShouldRun(inIsRecordingQuestion, inIndex, inIteration)
Description
This callback is used to start a silent recording for a specific iteration
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inIsRecordingQuestion | bool | determine if it's question or chapter (when true refers to Question) |
inIndex | Int | the index of either the question or chapter |
inIteration | Int | the iteration index |
Return Type
bool
Example
function OnSilentRecordingShouldRun(inIsRecordingQuestion, inIndex, inIteration){
var retVal = true;
if (inIsRecordingQuestion == true && inIndex ==105)
{
if (inIteration == 3)
{
retVal = true;
}
else
{
retVal = false;
}
}
return retVal;
}
Comments
Please sign in to leave a comment.