View Single Post
  #2 (permalink)  
Old Aug 25th, 2005, 15:43
Andy K Andy K is offline
Reputable Member
Join Date: May 2005
Location: Sheffield
Posts: 104
Thanks: 0
Thanked 0 Times in 0 Posts
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
Reply With Quote