MoviePlayer.HasStep

From Xojo Documentation

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

Supported for all project types and targets.

If True, the controller has forward and reverse arrows to the right of the slider. The default is True.

Notes

When set in code, HasStep takes effect the next time the MoviePlayer is assigned a movie.

Example

This example turns HasStep off. Since it is called prior to the assignment of a movie to the player, the arrows are not shown for this movie.

Dim f As FolderItem

f=GetOpenFolderItem(FileTypes1.VideoMp4)
If f <> Nil Then
MoviePlayer1.AutoPlay = True
MoviePlayer1.HasStep = False
MoviePlayer1.Movie = f.OpenAsMovie
End If