The Adobe Integrated Runtime (AIR) uses the Webkit HTML engine. As such, most of the complexity of using HTML in your applications is hidden. This simple steps, helps to load a webpage . And it does not allow pop-up windows at the time of browsing .
The HTML components with their proeprties as like below:
mx:HTML location="http://www.t-mobile.com" locationChange="chgHtml()" width="800" height="600" styleName="dispHtml" id="dispHtml" x="112" y="13"
And having a properties to access the browser histroys, to go back & forward in the browser, the few important proerties are:
To Go Back from the current page : dispHtml.historyBack()
To Go Forward the current page : dispHtml.historyForward()
To Stop the loading of current page : dispHtml.cancelLoad()
To Refresh the current page : dispHtml.reload()
Try with these informations, to create your own browser.