# Flash 8 javascript popups

**URL:** https://forum.kirupa.com/t/flash-8-javascript-popups/224037
**Category:** Uncategorized
**Created:** [April 27, 2007, 6:22pm UTC](https://forum.kirupa.com/t/flash-8-javascript-popups/224037 "2007-04-27T18:22:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![virtualshalon](https://avatars.discourse-cdn.com/v4/letter/v/65b543/32.png) [@virtualshalon](https://forum.kirupa.com/u/virtualshalon)
#### Post date: [April 27, 2007, 6:22pm UTC](https://forum.kirupa.com/t/flash-8-javascript-popups/224037/1 "2007-04-27T18:22:18Z")

</div>

hi all,

i’m having a miserable time trying to get flash 8 to work javascript popups in both firefox and internet explorer…

right now i’ve got this working in firefox only:

html head:

\<script language=“JavaScript”\>  
\<!–  
function launch(page) {  
openWin = this.open  
(page, “this is the title”,“toolbar=no,menubar=no,scrollbars=no,location=no,width=200,height=200,top=250,left=250”);  
}  
–\>  
\</script\>

flash:

btn\_Up.onRelease = function() {  
getURL(“javascript:launch(‘popup.html’,400,300)”);  
};

any thoughts?
