Flasher Archive

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


Subject: RE: FLASH: Screensaver Full Screen
From: John Stanley
Date: Wed, 24 May 2000 14:15:01 +0100

try
<!--
Popup Window
Version 2.0
Last Updated: May 7, 1999
Code maintained at: http://www.moock.org/webdesign/javascript/
Copy permission granted for non-commercial uses. Written by Colin Moock.-->


<SCRIPT LANGUAGE="JavaScript"> var javascript_version = 1.0;</SCRIPT>
<SCRIPT LANGUAGE="JavaScript1.1"> javascript_version = 1.1;</SCRIPT>


<SCRIPT LANGUAGE="JavaScript">

var newwin;

function launchwin(winurl,winname,winfeatures)
{
//This launches a new window and then
//focuses it if window.focus() is supported.
newwin = window.open(winurl,winname,winfeatures);
if(javascript_version > 1.0)
{
//delay a bit here because IE4 encounters errors
//when trying to focus a recently opened window
setTimeout('newwin.focus();',250);
}
}
</SCRIPT>

</HEAD>

<BODY ONLOAD="launchwin('yourpage.htm' ,
'newwindow','fullscreen,scrollbars')">

-----Original Message-----
From: patrickfatbestweb [dot] net [patrickfatbestweb [dot] net (mailto:patrickfatbestweb [dot] net)]
Sent: Wednesday, May 24, 2000 12:56 PM
To: flasheratchinwag [dot] com
Subject: FLASH: Screensaver Full Screen


Hello all!

I'm trying to produce a Flash screen saver. Everything works fine... except
I can't get the
bloody thing to function full screen without selecting the "full screen"
option of the .EXE when
it's playing! Kinda useless when moving the mouse in the first place stops
the screensaver.
So, my question is: How do I get Flash to produce an .EXE that'll
automatically open full
screen?

Patrick

PS- Attention all you "Full Screen = Design Suicide" enthusiasts.... this is
a
SCREENSAVER. Save your flames for the web sites.


Complacency breeds stagnation


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
World Animation Celebration - Big Internet Animation Pow Wow Discount Offer

Register before May 25 mention flasher and save 25%!! www.wacfest.com

Be discovered, get a job or have your web series picked up. A big talent
search for Shockwave
and Flash animators is happening May 30-June 4 in Hollywood. Featuring Rob
Burgess, Matt
Groening, Brad Bird and more. www.wacfest.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com

flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
World Animation Celebration - Big Internet Animation Pow Wow Discount Offer

Register before May 25 mention flasher and save 25%!! www.wacfest.com

Be discovered, get a job or have your web series picked up. A big talent search for Shockwave
and Flash animators is happening May 30-June 4 in Hollywood. Featuring Rob Burgess, Matt
Groening, Brad Bird and more. www.wacfest.com
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
To unsubscribe or change your list settings go to
http://www.chinwag.com/flasher or email helpatchinwag [dot] com


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