Hi,

habe schon einiges gegoogelt und hier gesucht aber kann nichts finden und hoffe mein Beitrag ist richtig hier!?

Ich habe folgenden Actionscript 3 Code der von Joomla anscheinend geblockt wird:

logo_btn.addEventListener(MouseEvent.CLICK, linkClick);

function linkClick(Event:MouseEvent):void {
var url:String = "http://www.domain.de";
var request:URLRequest = new URLRequest(url);
try {
navigateToURL(request, '_self');
} catch (e:Error) {
trace("Error occurred!");
}
}

Flex Fehlermeldung:
You cannot navigate the special windows "_self", "_top", or "_parent" if
your SWF file is contained by an HTML page that has set the
allowScriptAccess to "none", or to "sameDomain" when the domains of
the HTML file and the SWF file do not match.

wenn ich die Einstellung '_blank' verwende geht das ganze nur soll es '_self' sein.
Habt Ihr einen Tipp??

Danke im Voraus!
Christian