This was previously posted in the Linux and Friends forum but I've moved it here as I think on reflection I need a developer to answer it.
My code:
Code: Select all
var test = function () {
alert('the end');
}
var vlc = $('#el').get(0); //jquery equivalent to document.getElementById
vlc.addEventListener('MediaPlayerEndReached', test, false);
vid = vlc.playlist.add(videoURI); //the movie url
vlc.playlist.play();
Got result: nothing.
i tested and vlc.addEventListener exists so this is the right way to do it (not the DOM level 1 way).
My versions:
VLC player 1.1.9
Firefox 7 on Ubuntu Linux
I've tried with other events and no joy there either. A few other posts mention this problem; some people seem to have got it to work on Mozilla (on Linux?) - using one of the two versions above & some not... Does anyone know how to make it work & if indeed it is implemented?
Many thanks
JustinWyllie