Hi, I want to put a video in my project (video player)that doesn't show the video controls even when I click on it(video).thanks
TIMAI2
March 13, 2025, 7:51am
2
Do need sound?
Do you need to be able to do anything else, other than watch the video?
Hi,thanks.I want the user to not be able to skip to the beginning or end of the video or stop it and Can't forward or rewind video and only watch video.
TIMAI2
March 13, 2025, 8:12am
4
If you do not need sound, then you can use html5video in a webviewer
That is good
You can use a webviewer and html5video to playback without controls, you would need to create an html file and have this in your assets with the video. Your video may need to be in a compliant format, webm works best for me.
https://www.w3schools.com/html/html5_video.asp
example:
<!DOCTYPE html>
<html>
<body>
<video width="320" height="240"autoplay muted>
<source src="movie.mp4" type="video/mp4">
<source src="movie.ogg" type="video/ogg">
Your browser does …
If you do need sound, then you could use an extension to overlay the videoplayer to prevent interaction
You might also want to try this:
videoPlayerOverlay.aia (450.3 KB)
I used the Video Player component and @vknow360 's custom sheet extension to provide an "overlay" which prevents interaction with the video player.
I have it set so that when you press the Back button, the video restarts.