I get the audio volume level via js alert and all but no logo shows ever up?!
Code: Select all
<html>
<title>VLC Mozilla plugin test page</title>
<body>
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org/vlc"
width="640"
height="480"
id="vlc"
target="http://download.media.tagesschau.de/video/2013/1002/TV-20131002-1705-2701.webm.webm">
</embed>
<script language="Javascript">
<!--
var vlc = document.getElementById("vlc");
/*vlc.video.logo.disable();*/
/* vlc.audio.toggleMute(); */
/* alert ("hello"); */
alert (vlc.versionInfo());
/* setTimeout(function(){alert("timeouted")}, 10000); */
vlc.video.marquee.enable();
/*vlc.video.marquee.color="0x000000";
vlc.video.marquee.text="Gangster";
*/
alert("Audio =" + vlc.audio.volume);
/* vlc.video.fullscreen=true; */
vlc.video.logo.enable();
vlc.video.logo.file("http://static.gulli.com/layout/shirts/nick-shirt.png");
setTimeout(function(){alert("hi2"); vlc.video.logo.file("http://static.gulli.com/layout/icons/portal/icon_pressearchiv.png")}, 20000);
//!-->
</script>
</body>
</html>