Hi @Sareka
Identify the screen that contains the video player. Let's assume it's called "VideoScreen".
Select the "VideoScreen" and go to the Properties pane.
In the Properties pane, locate the OnVisible property and add the following formula:
Set(VideoPlaying, true)
This formula sets a variable called "VideoPlaying" to true when the screen becomes visible.
Locate the OnHidden property of the "VideoScreen" and add the following formula:
Set(VideoPlaying, false)
This formula sets the "VideoPlaying" variable to false when the screen becomes hidden.
Now, select the video player control on the "VideoScreen".
In the Properties pane, locate the Start property of the video player control and add the following variable:
VideoPlaying
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.