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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Easy, Easy Popup windows in Flash

Step-by-step tutorial

Easy, Easy Popup windows in Flash

by  TulsaJeff  Posted    (Edited  )
What goes in Flash...

on any button in Flash that you want to open a popup window with just right-click on the button and double click on getURL... select the getURL code at the top and in the box at the bottom type in:

javascript:yourpopupname() (Expression box should be unchecked)

yourpopupname can be anything you want...call it banana or whatever...makes no difference. just remember...whatever it is called in Flash must be exactly what you call it in the HTML file.

What goes in the HTML file that contains the Flash File...

Here is an example of 2 popup windows ... the first one is just a template to show you what supposed to go into the code, the second one is the actual code so you can see it in action.

as far as I know there are no limits other than file size as to how many popups you can have. popup to your hearts content!


<HEAD>
<TITLE>Your Title Goes Here</TITLE>
<SCRIPT LANGUAGE="JavaScript">
<!--
function yourpopupname()
{
window.open("URL address of window to be opened as a popup","_blank","directories=0,menubar=0,scrollbars=0,toolbars=0,location=0,width=#of pixels,height=#of pixels,left=#of pixels from left edge,top=#of pixels from top edge");
}

function gallery()
{
window.open("photogallery/photo1.htm","_blank","directories=0,menubar=0,scrollbars=0,toolbars=0,location=0,width=550,height=400,left=0,top=0");
}
//-->
</SCRIPT>
</HEAD>


for all of the options above...0 denotes off while 1 denotes on as in binary computer language.
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top