Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help on popup parameters

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I need to know how can i order flash to open a new blank window with 300* 250 ... without the menu itens ..
Just like a usual popup ..

Thanks
 
hi, you can call a javascript function like this:

Type this between the head tags on the htmlpage in which you put your flashmovie:
<SCRIPT language=JavaScript1.2>
<!--
// Functions
function openMovie(url,width,height)
{
MovieWindow = window.open(url,'Movie','toolbar=0,location=0,directories=0,statusbar=0,menubar=0,scrollbars=0,resizable=0,width='+width+',height='+height);
}
//-->
</SCRIPT>


this is the code that goes in your flash button:


on (press) {
getURL (&quot;javascript:eek:penMovie(' );
}

regards, goaganesha
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top