-
I'm opening a video with |
Beta Was this translation helpful? Give feedback.
Answered by
SuRGeoNix
May 29, 2023
Replies: 1 comment 1 reply
-
Hi @Symbai, You could Seek to 0 for that. eg:- Player.OpenCompleted += (o, e) =>
{
if (e.Success)
{
Player.Seek(0);
}
}; |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
SuRGeoNix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Symbai,
You could Seek to 0 for that. eg:-