void OnVideoSkipped(inQuestionIndex, inIteration, inAttachmentIndex, inAttachmentName)
Description
This callback is used when a video is skipped.
Parameters
The following is a list of parameters the functions receives
| Parameter | Type | Description |
|---|---|---|
| inQuestionIndex | Int32 | The question Index |
| inIteration | Int32 | The iteration index |
| inAttachmentIndex | Int32 | The attachment index |
| inAttachmnetName | string | The attachment name |
Return Type
void
Example
function OnVideoSkipped(inQuestionIndex, inIteration, inAttachmentIndex, inAttachmentName){
if (inQuestionIndex == 3)
{
Prompt("Video Index was skipped: " + inAttachmentIndex);
}
return true;
}
Comments
Please sign in to leave a comment.