Search not working in AIRHelp from AIR HTML container
Hi,
I'm working on an Adobe AIR application, and investigating integration AIRHelp into our app. I found that deploying two separate air apps to be cumbersome to the user, so I'm looking at using AIRHelp in browser based mode, and then opening the url using the mx.controls.HTML control. The browser based AIR Help launches ok, however, the print button and the search input doesn't work correctly. Has anyone had this issue? (However, when I run it from Chrome or IE, it's fine.)

RED areas don't work.
My Flex code:
var helpUrl:String = "http://myserver/BrowserBasedHelp/xxx.htm";
var window:Window = new Window();
var html:HTML = new HTML();
html.location = helpUrl;
html.percentHeight = 100;
html.percentWidth = 100;
window.addChild(html);
window.title = "Client help";
window.width = 800;
window.height = 600;
window.showStatusBar = false;
window.open();
Thanks in advance,
-Tom
Message was edited by: Peter Grainge "based based" amended to "browser based"