Hallo allerseits,
ich möchte auf einer Website eingebettete Videos abspielen und diese dann bei Bedarf mit einem Button in den Vollbildmodus schalten. Habe auch schon diverse Foren durchforstet und es auf verschiedene Arten versucht (mit und ohne JS), ohne Erfolg. Im Internet Explorer funktioniert das Ganze reibungslos, im Firefox keine Chance.
Irgendwie stehe ich hier auf dem Schlauch, vielleicht kann mir jemand netterweise weiterhelfen, sicher ist nur ein kleiner Bug drin. Anbei mal mein Posting, in diesem Fall zum Testen mit einem Video von der MS Site. Hier kurz Beispielcoding:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de" xml:lang="de">
<head>
</head>
<body>
<OBJECT id="VIDEO" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject" width="551" height="510" >
<PARAM NAME="URL" VALUE="http://msstudios.vo.llnwd.net/o21/presspass/…_6000k_Zune.wmv">
<PARAM NAME="enabled" VALUE="True">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM name="PlayCount" value="1">
<PARAM name="Volume" value="50">
<PARAM NAME="balance" VALUE="0">
<PARAM NAME="Rate" VALUE="1.0">
<PARAM NAME="Mute" VALUE="False">
<PARAM NAME="fullScreen" VALUE="False">
<PARAM name="uiMode" value="full">
<param name="stretchToFit" value="1">
<param name="<Showcontrols" value="1">
<param name="<Display" value="1">
<embed id="VIDEO" src="http://msstudios.vo.llnwd.net/o21/presspass/…_6000k_Zune.wmv" width="551" height="510" autostart=1 loop=0 align="absmiddle" type="application/x-mplayer2"
pluginspage="http://www.microsoft.com/Windows/MediaP…oad/default.asp"
showcontrols=1 showdisplay=0 showstatusbar=1> </embed>
</OBJECT>
<INPUT type = button
value = "Full Screen"
name = FSBUTTON
onclick = "
/* Check to be sure the player is playing. */
if (VIDEO.playState == 3)
VIDEO.fullScreen = 'true';
">
</body>
</html>
Wie gesagt, im IE kein Thema, im Firefox 3.5.3 keine Chance auf nen Vollbild.
Vielen Dank für alle Tipps,
Jack