Artotems Opening A Window in iWeb
Artotems Opening A Window in iWeb
Opening A Wiindow and Sizing it in iWeb
5.Replace the Red text that you see in the code with your own.
6. Click apply. You may need to adjust the HTML boundary box to see the button.
7. Have Fun!
1. Go to the page where you want the link button to be placed.
3. Select the HTML Snippet on the Insert Menu.
4.Copy the code below and paste it into the HTML Snippet.
The Code
channelmode=yes|no|1|0
Whether or not to display the window in theater mode. Default is no
directories=yes|no|1|0
Whether or not to add directory buttons. Default is yes
fullscreen=yes|no|1|0
Whether or not to display the browser in full-screen mode. Default is no. A window in full-screen mode must also be in theater mode
height=pixels
The height of the window. Min. value is 100
left=pixels
The left position of the window
location=yes|no|1|0
Whether or not to display the address field. Default is yes
menubar=yes|no|1|0
Whether or not to display the menu bar. Default is yes
resizable=yes|no|1|0
Whether or not the window is resizable. Default is yes
scrollbars=yes|no|1|0
Whether or not to display scroll bars. Default is yes
status=yes|no|1|0
Whether or not to add a status bar. Default is yes
titlebar=yes|no|1|0
Whether or not to display the title bar. Ignored unless the calling application is an HTML Application or a trusted dialog box. Default is yes
toolbar=yes|no|1|0
Whether or not to display the browser toolbar. Default is yes
top=pixels
The top position of the window
width=pixels
The width of the window. Min. value is 100
Additional Changes
From the W3 Schools Tutorial
<script type="text/javascript">
function open_win()
{
window.open("http://www.apple.com/")
window.open("http://www.ted.com/")
}
</script>
<form>
<input type=button value="Open Windows" onclick="open_win()"> </form>
Example
Open Multiple Windows
<script type="text/javascript">
function open_win()
{
window.open("http://artotems.com/default.aspx","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400") }
</script>
<form>
<input type="button" value="Artotems Co." onclick="open_win()"> </form>
If you value and use Artotems iWeb Tips and Tricks please consider making a $10 donation to support more assistance in the future as well as the charitable work Artotems Co. does for others around the world.
© 2007 C. Tucker / Artotems Co, All rights reserved.
