Flasher Archive

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


Subject: Re: FLASH: opening a new windows
From: Davis
Date: Fri, 18 Aug 2000 19:51:20 +0100

Yeah,
Just simply fire off a getURL command with a
javascript:launchwin('winURL','winName','scrollbars=no,width=#,height=#')
Then put this is your html page
<!--
Popup Window -->


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


>Can anyone tell me, how can I open a new window in the browser without menu
>and full screen in flash?
>
>Thanks & regards,
>
>SRee...


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
NudeGuru.com is proud to sponsor the Flasher list
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
IT'S THE ART OF MONEY, HONEY!
Tips and Advice from some of the most popular Flash
artists + industry power-brokers on how to hold onto
your rights, negotiate contracts and get full value
for your work.http://www.nudeguru.com from Franke James
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
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]