Hey everyone...
I'm on a continuing quest to develop a simple HTML editor inside a Flex / Flash / AIR runtime. My latest attempt was going really well until i tried to use the editor menu buttons, which generated an AIR Alert that said:
"Sorry, but we have noticed that your popup-blocker has disabled a window that provides application functionality. You will need to disable popup blocking on this site in order to fully utilize this tool."
which must be from the javascript editor program
I guess it means that the Webkit browser engine has its popup blocker turned on ?
I'm using tinyMCE, set up on my localhost dev machine, and calling it from an HTML string which is loaded from a database into an AIR HTML component inside the AIR application. I get the HTML content to display, and the tinyMCE editor also is in place... but whenever I try to use a menu button on the tinyMCE interface that requires a popup dialog... i get an alert with the notice mentioned above..
However, the tinyMCE editor does work on the loaded HTML for other functions, like making text bold or underlined etc... just not the popup dialogs, like Insert Image.
I tried setting
newEditorWindow.editionHTML.htmlLoader.placeLoadStringContentInApplicationSandbox = true;
but then the tinyMCE editor doesn't appear at all.
does anyone know if its possible to configure the Webkit engine at runtime to not block popups ?