Mobile Movie Player Options

Is it possible to control any of this:

How the movie fits? I want it to zoom to fill regardless of what is cropped off.
To loop, or start again when it finishes. I can’t figure out how to tell where it is at in it’s cycle.

Use:
MoviePlayer1.Position to find the current position in the movie, and
MoviePlayer1.Duration to find the total length of the movie.
To find out if you’ve reached the end of the movie use this code in a timer:

if MoviePlayer1.Duration - MoviePlayer1.Position < 1 then
  'end of movie
end if
1 Like