Here is the script am using to open an external html file from moviclip but it is opening in new tab. How to make it open in the same window?
function ShowDesignerhome(event:MouseEvent):void {
var targetURL:URLRequest = new URLRequest("77.html");
navigateToURL(targetURL);
Add
"_self"as the second argument for your call tonavigateToURL(). More information:PS. Please make use of the “accept” button next to answers (this goes for answers on your current questions).