Hi, Building a little elearning tool using jwplayer I am using the jwplayer to play a playlist containing mp3 audios and images which looks like a powerpoint presentation. ie audio1.mp3 plays while image1.png is displayed then audio2.mp3 while image2.png is displayed etc etc Everything works well except that if I view it in full screen mode and audio1.mp3 is finished, the player exits the full screen and I have to turn full screen mode on manually for the next track. Does anyone know if it is possible to stay in fullscreen mode when tracks change? Thanks
If you are using in HTML5 mode, try calling the setFullscreen() method when each file is finished playing: jwplayer().setFullscreen(true); Code (JavaScript): See if it works.
Thanks. Tried your solution and unfortunately the screen goes small and then large again. Not an effect that I am looking for. Will come up with a different solution.