Flasher Archive

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


Subject: RE: FLASH: Calling a Pop-up
From: John Stanley
Date: Thu, 13 Jul 2000 02:12:20 +0100

try this: i use it to make a full screen interface, but i am sure it could
be modified

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<title>Untitled</title>
</head>

<body>
<HTML>
<HEAD>
<TITLE>Your Page Title Goes Here</TITLE>



<!--
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>

<!---<A HREF="javascript:launchwin('yourpage.cfm' ,
'newwindow','fullscreen,scrollbars')">Your Link Goes Here</A> --->
<h5>Shameless plug!!!!</h5>
<h1>Centromine's Intranet Rocks!!!!!</h1>

<BODY ONLOAD="launchwin('frametest.html' ,
'newwindow','fullscreen,scrollbars')">

<!---<FORM><INPUT TYPE="BUTTON" VALUE="Launch Window"
ONCLICK="launchwin('yourpage.cfm' , 'newwindow' ,
'height=150,width=300')"></FORM> --->



</HTML>



</body>
</html>

John Stanley
Programmer
Internet Visions Group
Centromine, Inc



-----Original Message-----
From: Russell E. Unger [rungeratzaxcoms [dot] com (mailto:rungeratzaxcoms [dot] com)]
Sent: Wednesday, July 12, 2000 11:39 AM
To: flasheratchinwag [dot] com
Subject: FLASH: Calling a Pop-up


Folks...

Has anyone been able to call an html page from within a .swf that has set
values for size (height and width) of the pop-up?

Alternative solution: Is there anyway to call a page and use a javascript
to resize that page--instantly?

Thanks,

Russ


flasher is generously supported by...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
July 24-26, 2000, NEW YORK CITY, Hammerstein Ballroom
www.flashforward2000.com
Produced by United Digital Artists and lynda.com
Sponsored by Macromedia, Adobe Systems, Fusion, Inc, AtomFilms,
shockwave.com and Electric Rain.
1.877.4.FLASH.4 or (1.805.640.6679 outside the US and Canada)
Register before June 30 and save $200!!-- www.flashforward2000.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...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
flashforward2000 and the Flash(tm) Film Festival
July 24-26, 2000, NEW YORK CITY, Hammerstein Ballroom
www.flashforward2000.com
Produced by United Digital Artists and lynda.com
Sponsored by Macromedia, Adobe Systems, Fusion, Inc, AtomFilms,
shockwave.com and Electric Rain.
1.877.4.FLASH.4 or (1.805.640.6679 outside the US and Canada)
Register before June 30 and save $200!!-- www.flashforward2000.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]