I have a CD with presentation made in HTML format (there are reasons for that). AutoPlay on Windows should open default browser and display presentation in full screen mode. How to achieve that?
|
feedback
|
migrated from stackoverflow.com Oct 1 '11 at 2:15
This question came from our site for professional and enthusiast programmers.
|
There are 2 possible modes to create a cd/dvd that will autorun to open the html file in a full screen mode. 1) Using a windows shell to maximize it. 2) Using a JavaScript 1)Using Windows Shell Method: The following autorun.inf file invokes the command processor to start a full screen browser on the html file "index.htm":
Note: Use of "command" & "start" restrict this to machines running Windows OS. So this won't be supported on other platforms. 2) Using a JavaScript The following .inf file will invoke the browser:
now place the following script between Here goes your script tags :
Note: script wont maximize your window, it will just resize the browser window. This will run on all platforms. | |||||||
feedback
|
|
Simplest method that worked for me was http://www.menubox.com/ launcher. There is one drawback - it uses integrated windows browser component instead of default browser and it ain't free. | |||
|
feedback
|

iexplore -k presentation.htmlis the best thing I came up with, but it's kiosk mode, not full screen and it opens IE, not default browser. – Stancell Sep 29 '11 at 17:16