I have an swf file that I would like to open in a new browser window when
a button in my main file is hit. Any help is mucho appreciato.
Printable View
I have an swf file that I would like to open in a new browser window when
a button in my main file is hit. Any help is mucho appreciato.
You have to have the swf already embedded in an html page. Then use the button code;
on(release){
getURL("http://www.yoursite.com/swfpage.html", "_blank");
}