我有一个AIR应用程序,其中包含tinyMCE js。我在tinyMCE工具栏上添加了一个按钮,点击后会出现一个inlinepopup窗口。此内联弹出窗口加载网址
var aa=tinyMCE.activeEditor.windowManager.open({
url : 'http://localhost/Save.html',
width : 520,
height : 340,
resizable : "yes",
inline : true,
close_previous : "yes"
});
Save.html代码:
<script src="http://www.wiris.net/demo/editor/editor"></script>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="../tinymce/jscripts/tiny_mce/tiny_mce_popup.js"></script>
<script>
var editor;
window.onload = function ()
{
editor = com.wiris.jsEditor.JsEditor.newInstance({'language': 'en'});
editor.insertInto(document.getElementById('editorContainer'));
}
现在的问题是---- 当我运行我的AIR应用程序时,我收到错误 表达式'tinymce'[undefined]的结果不是对象。
我怀疑是跨域问题,因为
当我在Save.html中提醒时
alert(window.document.domain); returns "localhost"
当我在AIR应用程序中警告Mxml(内部)js
alert(window.document.domain); returns " "
提前感谢任何建议&amp;建议。