Sarfraz Ahmed
Sarfraz Ahmed

Reputation: 1399

how to handle external links in HTML component in adobe Air?

I have an AIR Project which has a HTML component. This HTML component Load a URL. Once specified page is loaded, there are some links on the page that need to be open in separate HTML tabs. My problem is when I click any of these link nothing happens. how can I resolve this issue. I created the HTML component as:

<mx:HTML id="htmlPage" left="0" top="35" right="0" bottom="0" 
    contentBackgroundColor="#1B1B1B"
    paintsDefaultBackground="true"
    location="page URL"        
    />

Upvotes: 1

Views: 867

Answers (1)

Varun Bajaj
Varun Bajaj

Reputation: 1043

htmlPage.htmlLoader.navigateInSystemBrowser = true

Upvotes: 1

Related Questions