OnVideoSkipped()

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;
}

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.