Flex浏览器应用程序初始化

发布于 2024-12-02 18:20:07 字数 124 浏览 1 评论 0原文

有人能指出一些关于在 Flex 中创建没有 UI 的应用程序的好教程吗?

实际上,看起来我真正需要知道的是如何在 flash 对象初始化时调用函数。我尝试了creationComplete属性,但它在浏览器中不起作用。

Would anyone be able to point out some good tutorials on creating applications in flex that are don't have UI's?

Actually, it looks like all I really need to know is how to call a function upon initialization of the flash object. I tried the creationComplete attribute, but it doesn't work in browser.

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

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

发布评论

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

评论(2

总攻大人 2024-12-09 18:20:07

好吧,我不确定是什么让它最终起作用,但我最终从某个网站复制并粘贴了这段代码(抱歉,我不记得该网站):

<?xml version="1.0" encoding="utf-8"?>
<!-- wrapper/CheckExternalInterface.mxml -->
<s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    creationComplete="initApp()">
</s:Application>

最终成功了!不管怎样,谢谢。

Well, I'm not sure what made it work finally, but I ended up copying and pasting this code from some website (sorry, i don't remember the site):

<?xml version="1.0" encoding="utf-8"?>
<!-- wrapper/CheckExternalInterface.mxml -->
<s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:mx="library://ns.adobe.com/flex/mx" 
    xmlns:s="library://ns.adobe.com/flex/spark" 
    creationComplete="initApp()">
</s:Application>

And that ended up working! thanks anyway.

拍不死你 2024-12-09 18:20:07

如果您打算将 JavaScript 连接到 Java 服务器,为什么不使用 XMLHTTPRequest? IT 是每个 AJAX 风格 RIA 应用程序的基础。您来回传递的数据格式可以是 JSON 或 XML。它不一定是二进制的。

其次,您不需要为此使用 Flex。 ActionScript 中的套接字 API 是Flash Player 的一部分。您可以在不依赖 Flex 框架的情况下使用它们。

If you're intent is to connect JavaScript to a Java Server, why not use XMLHTTPRequest? IT is the basis of every AJAX style RIA application. The data format you pass back and forth can either be JSON or XML. It doesn't have to be binary.

Second, you don't need Flex for this. The Sockets APIs in ActionScript and are part of the Flash Player. You can use them without any dependencies to the Flex Framework.

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