I have the plugin myself. I just tested it and it does work.
Example:
- new project
- place a movie player (MoviePlayer1) in the main window
to open a movie located in your desktop:
MoviePlayer1.Movie = SpecialFolder.Desktop.Child("Assemblee.mov").OpenAsMovieMBS
We have to use the OpenAsMovieMBS method so the movie opens with a handler. Otherwise, the other methods won't work.
To test if the movie has reached the end:
if MoviePlayer1.Movie.IsMovieDoneMBS then msgbox "Done"
To test if the movie is running, test the rate property. 0 means stopped. positive means playing, negative means playing backwards.
if MoviePlayer1.Movie.RateMBS > 0 then
msgBox "Movie is playing!"
elseif MoviePlayer1.Movie.RateMBS < 0 then
msgBox "Movie is playing backwards!"
else
msgBox "Movie is stopped!"
end if
Note that you can download a fully working demo of the plugin to test yourself.
Hope it helps.