从插件对话框中的 SWF 文件调用 CKEditor 中的函数

发布于 2024-09-09 04:37:06 字数 62 浏览 0 评论 0原文

我将如何从插件对话框中的 SWF 文件调用 CKEditor 中的函数,以便在将图像添加到编辑器后关闭对话框?

How would I go about calling a function in CKEditor from a SWF file in a plugin dialog that closes the dialog after adding an image to the editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雅心素梦 2024-09-16 04:37:06
var functionNumber = CKEDITOR.tools.addFunction(function(url){
            this.insertHtml('<img src="'+url+'" />');
            CKEDITOR.dialog.getCurrent().click('cancel');
        }, editor);

然后将该 functionNumber 发送到 SWF 以通过 callFunction 发回

var functionNumber = CKEDITOR.tools.addFunction(function(url){
            this.insertHtml('<img src="'+url+'" />');
            CKEDITOR.dialog.getCurrent().click('cancel');
        }, editor);

then send that functionNumber to the SWF to send back with callFunction

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文