TheDutchBeast Posted October 19, 2012 Share Posted October 19, 2012 Dear PHP freaks, At this moment I am busy for my company to make a system that will run without human input. You define a video and run it on fullscreen, that is on a big 32" lcd screen. The problem is, I have my video working, but it just won't run in fullscreen automatically, whatever I try to do. I am using IE 8. This is my code; <html> <head> <title> Play video in fullscreen </title> </head> <body> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/" name="mediaplayer1" ShowStatusBar="true" EnableContextMenu="true" autostart="true" width="320" height="240" loop="true" fullscreen="true" src="dave.wmv" /> </body> </html> Its so simple, yet is does not work, and it is driving me insane these last couple of days. Since fullscreen = "true" it should work. Some help would me highly appreciated! Greetings from The Netherlands and thanks in advance Dave video4.php Quote Link to comment Share on other sites More sharing options...
JohnTipperton Posted October 19, 2012 Share Posted October 19, 2012 i think you should need to set your height and width according to the actual size of the LCD screen, Quote Link to comment Share on other sites More sharing options...
TheDutchBeast Posted October 19, 2012 Author Share Posted October 19, 2012 But that does not mean i run it fullscreen, it will still show the IE interface. If i double click the fullscreen button, it runs fullscreen, but i want that to happen automatically... Which seems to be possible, but not working at this moment Thanks for your reply! Quote Link to comment Share on other sites More sharing options...
JohnTipperton Posted October 19, 2012 Share Posted October 19, 2012 lemme try it. Quote Link to comment Share on other sites More sharing options...
TheDutchBeast Posted October 19, 2012 Author Share Posted October 19, 2012 Okay if you want to try it go ahead, since I don't know the code you are using. If it succeeds, please post it! Thanks again mate Quote Link to comment Share on other sites More sharing options...
TheDutchBeast Posted October 19, 2012 Author Share Posted October 19, 2012 I've got an update! I changed my code to this: <OBJECT id="VIDEO" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject" width="320" height="240"> <PARAM NAME="URL" VALUE="dave.wmv"> <PARAM NAME="enabled" VALUE="True"> <PARAM NAME="AutoStart" VALUE="False"> <PARAM name="PlayCount" value="3"> <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="True"> <PARAM name="uiMode" value="full"> </OBJECT> WHen I press the play button now, it goes into perfectly fullscreen. Now the question is, hoe can I let it play automatically, without having to press play? Greetings! Quote Link to comment Share on other sites More sharing options...
JohnTipperton Posted October 19, 2012 Share Posted October 19, 2012 <PARAM NAME="AutoStart" VALUE="False"> change it to <PARAM NAME="AutoStart" VALUE="True"> Quote Link to comment Share on other sites More sharing options...
TheDutchBeast Posted October 19, 2012 Author Share Posted October 19, 2012 Well, the problem is, that one does not work. Does it work with you? Quote Link to comment Share on other sites More sharing options...
TheDutchBeast Posted October 19, 2012 Author Share Posted October 19, 2012 Aye mate it works! Thanks so much! You're my hero! Quote Link to comment Share on other sites More sharing options...
JohnTipperton Posted October 19, 2012 Share Posted October 19, 2012 no problem mate your welcome Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.