If anyone is looking for a solution to this, by adding ‘ allowScriptAccess=”always” ‘ to the end of the object and param tags in the .php file, you’re problem might be solved. Hope to be of some help.
Clay
http://www.pika.me
@holymonkey
I am having this issue too:
‘
button1_btn.addEventListener(MouseEvent.CLICK, myButtonFunction3);
function myButtonFunction3(event: MouseEvent) {
var request:URLRequest = new URLRequest(“http://www.linkexample.com/”);
navigateToURL(request, “_self”);
}
‘
…doesn’t work in WordPress until I drop:
‘
, “_self”
‘
…and then the link is opened in a new window. I’ve used this code with the target in files outside of WordPress and have no issues.
Have you found a solution?