I've developed Adobe AIR application, which opens cpanel of websites in HTML control. I realized that HTML control open links which opens in same window, however it don't opens the links that opens in new window i.e links which has attribute (target="_blank) like this:

<a href"" target="_blank"> Opens in new window </a>

I've searched on google for lot of time, although I've got one solution here AIR HTML with “_blank”Links but it opens that links in browsers and its too much old (sep:2008). So, anyone know another simple way to open link? Please help me.

link|improve this question

What do want to do with such links, open them in the same window? – alxx Apr 14 '11 at 5:40
Yes, if its possible then in same window. – Mudasir Bhutto Apr 14 '11 at 7:17
Hi alxx, any luck? – Mudasir Bhutto Apr 14 '11 at 15:25
Anyone please help me with this issue. I am too much worried about this. Thanks in advance. – Mudasir Bhutto Apr 15 '11 at 9:14
feedback

1 Answer

up vote 1 down vote accepted

I rewrited example you found to change anchor target, now links are opened in same window. But this method has limitations - only static links are fixed, any JS methods trying to open link in new window will fail.

<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
    initialize="init()">
<mx:Script>
<![CDATA[
    private function init():void
    {
        html.htmlText =
            "<html><body>" +
            "<a href='http://adobe.com' target='_blank'>Adobe (blank)</a><br/>" +
            "<a href='http://ixbt.com' target='_self'>iXBT (self)</a>" +
            "</body></html>";
        html.addEventListener(Event.COMPLETE, onHTMLComplete);
    }

    private function onHTMLComplete(event:Event):void
    {
        var document:Object = html.domWindow.document;
        for each (var anchor:Object in document.getElementsByTagName("a"))
        {
            if (anchor.hasOwnProperty("target"))
            {
                if (anchor.target == "_blank")
                {
                    anchor.target = "_self";
                }
            }
        }
    }

]]>
</mx:Script>
    <mx:HTML id="html" width="100%" height="100%"/>
</mx:WindowedApplication>
link|improve this answer
Thank You alxx. That's correct answer. :) Thank you again. – Mudasir Bhutto Apr 16 '11 at 12:18
Hi Alla and Alxx: I again stuck with an-other issue. If HTML page is divided into farmes, then clicking on link of frame does not reload the page, so Complete event is not triggered. So any link with target="_blank" is unable to open :(. Can you help me on this issue too? – Mudasir Bhutto Apr 20 '11 at 11:36
alxx......! Can you help me please? – Mudasir Bhutto Apr 20 '11 at 22:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.