View Full Version : How do I .. open page without V scroll bar, menus, tool baar and title bar.
burhan
01-14-2006, 07:31 PM
Pleas, How do I.. open page without V Scrool bar, toolbar, menu bar and title bar. The page in Full screen. Thanks
Pegasus
01-14-2006, 10:44 PM
Try this thread:
http://www.htmlforums.com/showthread.php?t=60619
Peg
supertijano
01-14-2006, 10:44 PM
Are you maybe thinking of pop-up?
http://lissaexplains.com/javascript4.shtml
burhan
01-15-2006, 08:18 AM
Please, I need to open a page without menu bar , title bar, vertical scroll bar and tool bar. The user will open this window by clicking on it’s icon on the desktop not open it by clicking its link on another page. So the required page must have these properties.
Thank you
Pegasus
01-15-2006, 10:14 AM
You've already asked this question and it's been answered.
http://www.htmlforums.com/showthread.php?t=60619
Peg
burhan
01-15-2006, 12:42 PM
Dear peg, thank you very much. Your code will work correct when open a new window by clicking it’s hyperlink on an old window.
But I need to open the new window by calling it from an autorun program on a CD ROM..Or by clicking it’s icon on the desktop. Not from an old window.
Thank you.
coothead
01-15-2006, 02:15 PM
Hi there burhan,
You are, obviously, only interested in IE - as you want fullscreen. :supereek:
This will do as you require for that browser....
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>big window</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
onload=function() {
window.open('http://www.google.com','','fullscreen')
}
//-->
</script>
</head>
<body>
<div></div>
</body>
</html>
...just add a shortcut to it on your desktop. :loopy:
You will need to use 'Alt + F4' to close this window or add this...
<a href="#" onclick="window.close()">close window</a>
... to the page that you have opened fullscreen.
burhan
01-15-2006, 07:14 PM
Dear COOTHEAD,
Thank you very much. It succeeded. This is exactly what I need.
But, I have 2 notices. Can we, please, work in the first notice? OK, when the page opens, after 2 or 3 seconds it goes to “http://www.google.com “page. I need the page not go any where. Only display its contents. I tried to delete the Google address but there was an error message. I didn’t succeed to debug this error. Can you help?
Thank you
coothead
01-15-2006, 11:53 PM
Hi there burhan,
I am not sure what you trying to achieve. :supereek:
Perhaps this will give you some ideas...
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>big window</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script type="text/javascript">
<!--
var contents='<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"'+
'"http://www.w3.org/TR/html4/strict.dtd">'+
' <style type="text/css">'+
'body{background-color:#000;}'+
'div{width:400px;line-height:160px;margin:35% auto;text-align:center;color:#f00;font-size:24px;}'+
'<\/style>'+
'<body scroll="no">'+
'<div>Hello world<\/div>'+
'<\/body>';
var mywindow;
onload=function() {
mywindow=window.open('','','fullscreen');
mywindow.document.write(contents);
}
//-->
</script>
</head>
<body>
<div></div>
</body>
</html>
burhan
01-16-2006, 03:26 AM
Dear Coothead
Thank you very much. This window is very good.
Will you, please, read this?
My school tries to change most of the school books to (Adobe PDF) e-books on CDs. The CD must work AutoRun. We found on the Internet a free famous AutoRun program with the name “AutoRunPro.exe”. It is very simple program. All what we have to do is putting this AutoRun program on the CD with HTML page , the PDF file and “AutoRun.inf” file. Which will be like this:
[ Autorun]
Open=Autorunpro.exe
[ Autorunpro ]
Open=index.htm
The “index.htm “page will ask the student to open the PDF file.
We will add the free adobe reader “ AdbeRdr705_enu_full.exe “ to the CD. We will ask the user to install the Adobe Reader if it isn’t on his computer. So the index.htm page must be FullScreen for the PDF file to open inside it.
Very sorry disturbing you by my project...
Will you give me the permission to E-Mail you.
Thank you very much.
coothead
01-16-2006, 06:35 AM
Hi there burhan,
Will you give me the permission to E-Mail you.
It would be far better to post your problem here as there may be members who have
far better knowledge of Adobe PDF e-books on CDs and AutoRunPro.exe than I do. :loopy:
Come to think about it, my knowledge of those items is practically worthless. :supereek:
burhan
01-28-2006, 01:54 PM
Dear Mr. Coothead .. Thank you... The school bought an auto run program from the Internet. It costs about 80 $. The program open the PDF file automatically. If the Adobe Reader isn’t on the user’s computer, the program makes a message box asking the user to install the Adobe reader which is on the CD already.
Thus the problem finished.. It was only 80 $ .
Thank you very much.
Burhan
coothead
01-28-2006, 02:06 PM
Hi there burhan,
I am pleased to hear that your problem has been satisfactorily resolved. :loopy:
vBulletin® v3.6.7, Copyright ©2000-2010, Jelsoft Enterprises Ltd.