i have an HTML with an iframe the navigation is setup using ExternalInterface.call(), however the .swf inside of the iframe does not have access to the java function that changes the pages and i think its because its inside of the iframe and not in the html
//these don’t work
function goLogin(event:MouseEvent) {
ExternalInterface.call(“top.changeBody”, “11”);
}
function goSetup(event:MouseEvent) {
ExternalInterface.call(“parent.parent.changeBody”, “12”);
}
can anyone offer any advice on how to get it so the .swf inside the iframe can access the changeBody function?