WebMoviePlayer.Position

From Xojo Documentation

Property (As Double )
aWebMoviePlayer.Position = newDoubleValue
or
DoubleValue = aWebMoviePlayer.Position

New in 2018r1

Supported for all project types and targets.

The play position of the movie in seconds.

Notes

This property is set when the PositionChanged event is called.

Sample Code

Set the movie play position to halfway point:

Var halfway As Double = MoviePlayer1.Duration / 2
MoviePlayer1.Position = halfway