处理对 window.open() 的 JavaScript 调用 - 不使用本机 Windows - Adob​​e AIR

发布于 2024-09-11 19:30:33 字数 245 浏览 10 评论 0原文

我正在开发一个 Adob​​e AIR 应用程序,它使用本机窗口和浮动面板。当调用 JavaScript window.open() 函数时,是否可以创建浮动窗口而不是本机窗口?

要求所有浮动窗口都包含在一个本机窗口中,因此不适合创建更多本机窗口。

我使用了 Custom HTMLHost 类来创建本机窗口,但我无法找到创建 MDI 窗口的方法。我正在为我的浮动面板界面使用 flexMDI 框架。

对此的任何帮助将不胜感激。

I am developing an Adobe AIR application which uses both native windows and floating panels. Is is possible to enable the creation of a floating window instead of a native window when a JavaScript window.open() function is called?

It is required that all of the floating windows are contained within one native window, therefore the creation of more native windows is not suitable.

I have used a Custom HTMLHost class in order to enable the creation of a native window but I can’t work out a way of creating a MDI window instead. I am using the flexMDI framework for my floating panel interface.

Any help on this would be much appreciated.

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

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

发布评论

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

评论(1

百善笑为先 2024-09-18 19:30:33

您可以尝试通过代码劫持 HTML 的窗口对象:

htmlContent.addEventListener(Event.COMPLETE, htmlLoaded);

private function myOpenFunction(...args) {

    // Do stuff with args
}

private function htmlLoaded(event:Event):void
{
    htmlContent.domWindow.open = myOpenFunction;
}

我不确定这(或非常类似的东西)是否有效,但如果可以的话,这可能是唯一的方法。

You can try hijacking the HTML's window object via code:

htmlContent.addEventListener(Event.COMPLETE, htmlLoaded);

private function myOpenFunction(...args) {

    // Do stuff with args
}

private function htmlLoaded(event:Event):void
{
    htmlContent.domWindow.open = myOpenFunction;
}

I'm not sure if that (or something very similar) will work, but it's probably the only way to do it if it can be done at all.

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