top_menu.fla(swf) that loads
menu.fla(swf)
the top_menu.swf loads the child swf and then the child tries to:
getURL("aboutUs.php");
no way. wait? didn't you put:
Code: Select all
System.security.allowDomain("*");
menu.swf is a child loaded into top_menu.swf, so while you can:
1. (flash IDE) run menu.swf and a page pops up
2. (flash IDE) run top_menu.swf and then menu.swf still pops up a page by loading your browser
3. load top_menu.swf right in the browser http://127.0.0.1/htdocs/site1/top_menu.swf it works fine NOT in HTML (embed)
you cannot:
1. embed into HMTL your top_menu.swf and then load child menu.swf, and ask menu.swf to 'getURL('aboutUs.php');
You need this in your main timeline for each *.fla file:
Code: Select all
System.security.allowDomain("*");