getURL issue

Hi Strange issue here…
I have a main movie, On that load another movie at level6,
whn i put an action on the external movie to be loaded on level6, it dosent work
:stare:
on(release){
getURL(“http://www.msn.com”, _blank);
}

even a form at level 6 is not linking to my PHP script.
Whn I test this from the flash movie works fine, but on the brower, fails.

Please help…?

erm are you using getNextHighestDepth()?

or just telling it level6 because that may not work so well.

I am not using the getNextHighestDepth();

Eternal movie has a link which connetcs a form on the doamin server & another link to MSN home pg both doesnt work… seems the bug with flash 9, as teh bowser has flash player 9+

http://kb.adobe.com/selfservice/viewContent.do?externalId=50c1cf38&sliceId=2

changed AllowscriptAcess to 'always… stillit fails…

<script type="text/javascript">
   var so = new SWFObject("myMovie.swf", "v1", "900", "750", "8", "#ffffff");
	so.addParam("scale", "noscale");
	so.addParam("salign", "tl");
	so.addParam("allowScriptAccess","always")
	so.write("flashcontent");
	var macmousewheel = new SWFMacMouseWheel( so );
	if( so.write('flashcontent') )	{
		var macmousewheel = new SWFMacMouseWheel( so );
	}

</script>

Any help guys…?

You may need to create a cross domain policy file, like this:


<?xml version="1.0"?>
<!DOCTYPE cross-domain-policy 
  SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
<cross-domain-policy>
  <allow-access-from domain="www.theOtherSite.com" />
</cross-domain-policy>

And load it to Flash.