I created an application with Adobe AIR and I threw inside it the HTML component that will open my desired page. The problem I'm having is that within my HTML page there are some file download functions, but these do not work because they are inside the AIR application.
Any idea what I can do to be able to download these files from the HTML page that is inside the AIR application?
With the code below the page opens the download link, but it is blank, a popup is opened but the file is not downloaded and I can not even see it.
htmlContent.location = "minha url";
var htmlhost:HTMLHost = new HTMLHost(true);
htmlContent.htmlLoader.htmlHost = htmlhost;