Flasher Archive

[Previous] [Next] - [Index] [Thread Index] - [Previous in Thread] [Next in Thread]


Subject: Re: FLASH: howto: Fullscreen mode
From: Danny Wilson
Date: Mon, 13 Dec 1999 12:33:40 GMT

Not sure if this is what you're after, but I used it recently:

Found it at the following site
http://javascriptsource.com
for everybodies reference, a useful site by the way.

> <!-- TWO STEPS TO INSTALL FULLSCREEN WINDOW:
>
> 1. Copy the coding into the HEAD of your HTML document
> 2. Add the last code into the BODY of your HTML document -->
>
> <!-- STEP ONE: Paste this code into the HEAD of your HTML document -->
>
> <HEAD>
>
> <SCRIPT LANGUAGE="JavaScript">
>
> <!-- This script and many more are available free online at -->
> <!-- The JavaScript Source!! http://javascript.internet.com -->
>
> <!-- Begin
> function openFullscreen(page) {
> var yes = 1;
> var no = 0;
>
> var menubar = no; // The File, Edit, View Menus
> var scrollbars = no; // Horizontal and vertical scrollbars
> var locationbar = no; // The location box with the site URL
> var directories = no; // the "What's New", "What Cool" links
> var resizable = no; // Can the window be resized?
> var statusbar = no; // Status bar (with "Document: Done")
> var toolbar = no; // Back, Forward, Home, Stop toolbar
>
> windowprops = "width=" + (screen.width-10) + ",height=" + (screen.height-50) + ",top=0,left=0";
>
> windowprops += (menubar ? ",menubars" : "") +
> (scrollbars ? ",scrollbars" : "") +
> (locationbar ? ",location" : "") +
> (directories ? ",directories" : "") +
> (resizable ? ",resizable" : "") +
> (statusbar ? ",status" : "") +
> (toolbar ? ",toolbar" : "");
>
> window.open(page, 'fullPopup', windowprops);
> }
> // End -->
> </script>
> </HEAD>
>
> <!-- STEP TWO: Copy this code into the BODY of your HTML document -->
>
> <BODY>
>
> <center>
> <form>
> <input type=button value="Open Fullscreen Page" onClick="openFullscreen('http://www.yahoo.com
> ');">
> </form>
> </center>
>
> <p><center>
> <font face="arial, helvetica" SIZE="-2">Free JavaScripts provided<br>
> by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
> </center><p>
>
> <!-- Script Size: 1.57 KB -->

--
------------------------------------------------
<Danny Wilson>
Photography : Photo Illustration : Animation

http://home.primus.com.au/dannywilson
------------------------------------------------


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Streaming Media WEST '99 Conference & Exhibition
"The Worlds largest Internet Audio & Video Event"
December 7 - 9, San Jose Convention Center, California

Reserve your space today at http://www.streamingmedia.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


Replies
  FLASH: Artistic site, have look, Benny (TecCentric Softwar

Replies
  FLASH: howto: Fullscreen mode, Benny

[Previous] [Next] - [Index] [Thread Index] - [Next in Thread] [Previous in Thread]