You need to edit the published (base)
HTML file from flash by adding Javascript in the head.
- Code: Select all
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>
Then on the flash page add the javascipt to your button/link:
- Code: Select all
on (release) {
getURL ("javascript:openNewWindow('openpage.htm','thewin', 'height=500,width=425,toolbar=no,scrollbars=yes')");
}
hope this helps