Hello, I'm trying to use my swf Menu to change the Content swf below it which is in an iframe so the menu doesnt have to load each time, but having trouble linking the buttons..
My flash code is:
homeButton.addEventListener(MouseEvent.CLICK, homeButtonFunction);
function homeButtonFunction(event: MouseEvent) {
var targetURL:URLRequest = new URLRequest("http://siteiwanttoload");
navigateToURL(targetURL, "_iframe");
}
the html code for the iframe is:
<iframe src=home.html name="iframe" width="630" height="300" frameborder="0" scrolling="no"></iframe>
Thanks for any help :)