Skip to content

Resume Video

Resume Video

Resumes a paused video by ID, or all videos at once.

Properties

System

Name Explanation Type
Apply to All Whether to resume all paused videos instead of a specific one. Toggle
ID The ID of the video to use. Variable or Value

Examples

Resume a Specific Video

Resumes the paused video with the specified ID stored in a global variable.

resume_video($gv[0]);
{"Data":{"ID":{"IsGlobalVariable":true,"IsLocalVariable":false,"IsValue":false,"Value":"","VariableIndex":0,"Metadata":null},"IsAll":false,"Metadata":null},"TypeName":"MAR.Game.Shared.Models.Scripts.Commands.Video.ResumeVideoCommand"}

Resume All Videos

Resumes all paused videos at once.

resume_video(all);
{"Data":{"ID":{"IsGlobalVariable":false,"IsLocalVariable":false,"IsValue":true,"Value":"0","VariableIndex":0,"Metadata":null},"IsAll":true,"Metadata":null},"TypeName":"MAR.Game.Shared.Models.Scripts.Commands.Video.ResumeVideoCommand"}