Link to home
Start Free TrialLog in
Avatar of J2q2q9
J2q2q9

asked on

Full Screen

Is there any HTML code that will make a webpage Fullscreen?If so.. where can i find it.. or what is the code. And where do I insert it?

(edited) Ok I found my answer.. Grrr.. hate that. But now i need it to open centered.. not half in the screen and half out.
Thanks
Avatar of bihle
bihle

try setting align="center"

Avatar of J2q2q9

ASKER

I am not trying to center text.. I want the window maximized or centered properly.
bihle changed the proposed answer to a comment
You can put everything inside a table.

<html>
<head>
<title>Title here</title>
</head>

<body bgcolor="#FFFFFF">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td>Content Here!</td>
  </tr>
</table>
</body>
</html>

Hope this help.
If you use DHTML, you can put whatever you need in layers, and do one of two options:
Have the material inside of the layer sized to a certain percentage instead of pixels.  Let's say %50.  Then you would put the vertical offset to %25 and it would always keep your layer centered.  You can also do the same thing with tables, only set you table sizes to percentages and then set the material inside of the table cells to be %100 percent of the cell.

Another solution is to use Macromedia Flash.  It load a movie that can automatically scale to fullscreen and have whatever alignment options you want.
You can use Behaviours for Body actions. Click on + in order to create new event. Choise "Open Browser window". Then You can point several parameters for Browser Window, such as Windows width and height and other new windows attributes. Dreamweaver automatically create proper script for creating new browser's window with needed characteristics.
Here is an excellent tutorial on how to make your page fullscreen :
http://www.nr1webresource.com/tutorials/fullscr.htm

It works fine!

You can use this

{ in the <HEAD> element paste this }
<script language="javascript">
<!--
function newWin(url){
window.open(url, 'windowName', 'fullscreen=1');
}
//-->
</script>

{ and in the <BODY> element paste this }
<a href="javascript:newWin('yourpage.html')">click here</a>

When you click this link the page 'yourpage.html' will be opened in a fullscreen window. And this will be really a fullscreen window, i.e. the Taskbar in Windows will disappear and the window will be without title.

The problem is that this works only for MSIE 4.0 and MSIE 5.0 (and better I guess).
If you want completely full screen, then you can get an exstension from macromedia's site. You will need to register. Goto http://www.macromedia.com/software/dreamweaver/ and follow the link on that page which saids "New Exchange for Dreamweaver".  When you have registered, goto the drop down box and select browsers. There you will find MFX Fullscreen.  Download it. OO I almost forgot you will have to down load Macromedia Exstension manager. You will see the link to download it under the hyperlink to download MFX Fullscreen.
Hope this helps.
ASKER CERTIFIED SOLUTION
Avatar of stuehrk
stuehrk

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial