View Single Post
  #2 (permalink)  
Old May 21st, 2007, 16:28
Sgaspar11 Sgaspar11 is offline
Multimedia Specialist
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
Blog Entries: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Help: Problem with popup window in Flash

It should be as easy as this:

Code: Select all
<script language="JavaScript" type="text/JavaScript">
<!--
function openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}
//-->
</script>
Code: Select all
on (release) {
getURL ("javascript:openBrWindow('http://home.com,'newWin','width=400,height=300,left=200,top=200,toolbar=No,location=No,scrollbars=Yes,status=No,resizable=Yes,fullscreen=No');  void(0);");
}

Last edited by Sgaspar11; May 21st, 2007 at 16:48.
Reply With Quote