So i just finished a client's website and the only problem that i've run into was the issue where the splash page (using Flash of course) is opening up a new window, instead of opening in the same window. I've listed the website below as well as the ActionScript code for the 'Enter' button. Does anyone have any suggestions?
www.synopticsresearch.com
ActionScript code:
Code:
enterButton.addEventListener(MouseEvent.CLICK,goThere);
function goThere(e:MouseEvent){
var request:URLRequest = new URLRequest("http://www.synopticsresearch.com/home.php");
navigateToURL(request);
}