We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello I'm using the Movie class and I'm wondinering if there is some events when the movie starts (dunring the loop) to trigger some events and when the movie stops (at the end) to launch the next movie in a playlist or trigger other events Does these events exists ? or should I use duration() and time() to trigger them myself ? Thanks !
Answers
Class Movie internally invokes its
protected
method eosEvent() when it gets an endOfStream() event.This opens up to us a window of opportunity to
@Override
it when instantiating Movie:Thanks a lot ! It works !