Q: I have a flash template. I would like to open new windows with just the images in them and certain options like no scrollbars, no toolbars, specific height and width, etc. Please, advise.
A: You can use Java script to do this.
In flash it should be assigned to the button (image, text etc.)
{
getURL(“javascript:openNewWindow(‘mypage.html’,'mypage’,'height=xx,width=xx,toolbar=no,scrollbars=no,resizable=yes’)”);
}
In index.html that relates to this flash you should write in the following java script, like this (don’t change anything):
function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>
Put it between <head></head> tags in index.html. Then add the following part to < embed> tag:
(<embed src=”yourmovie.htm” quality=”high” pluginspage=”http://www.macromedia.com/go/getflashplayer” type=”application/x-shockwave-flash” width=”xxx” height=”xxx” swliveconnect=true name=yourmovie.swf></embed>)
It should work.