JavaScript
Video Playerplay Method
Syntax
videoObj.play()
Description
Starts or resumes video playback for a VideoPlayer or VideoRecorderPlayer UX control.
Discussion
The pause() method starts or resumes video playback for a VideoPlayer or VideoRecorderPlayer control.
Example
var vObj = {dialog.object}.getControl('MYVIDEOPLAYER');
if (vObj) {
vObj.play();
}See Also