MoviePlayer.HasController

From Xojo Documentation

Property (As Boolean )
aMoviePlayer.HasController = newBooleanValue
or
BooleanValue = aMoviePlayer.HasController

New in 2019r2

Supported for all project types and targets.

Determines if the controller is displayed. The default is True.

Example

This example hides the controls and autoplays the movie.

Var f As FolderItem

f = FolderItem.ShowOpenFileDialog(FileTypes1.VideoMp4)
If f <> Nil Then
MoviePlayer1.AutoPlay = True
MoviePlayer1.HasController = False
MoviePlayer1.Movie = Movie.Open(f)
End If