
May 21st, 2007, 16:28
|
|
Multimedia Specialist
|
|
Join Date: Apr 2007
Location: Arizona
Age: 25
Posts: 666
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.
|