how can html pages be made to look like a program on their own (not like a page in the browser) ?
I need to meke some educational software that basically only works from CD and doesnt have a surrounding window (IE window).
| SitePoint Sponsor |
how can html pages be made to look like a program on their own (not like a page in the browser) ?
I need to meke some educational software that basically only works from CD and doesnt have a surrounding window (IE window).
my world is just 01010110, isn`t that enough ?


If you don't want to write a real desktop app, you could try something like
HTML Code:<html> <head> <script type="text/javascript"> function open_win() { window.open("http://www.w3schools.com","_blank","channelmode=yes, directories=no, fullscreen=yes, location=no, menubar=no, resizable=no, scrollbars=no, status=no, titlebar=no, toolbar=no") } </script> </head> <body> <form> <input type="button" value="Open Window" onclick="open_win()"> </form> </body> </html>
thanks , this works fine for me !
my world is just 01010110, isn`t that enough ?
Bookmarks