Flex 应用程序到组件?

发布于 2024-07-08 18:47:04 字数 236 浏览 6 评论 0原文

我有一个在 Flex Builder 3 中构建的应用程序。它有大量的 mxml 和 as3 代码,其中使用了一些其他自定义组件。 我查看了有关构建组件的文档,其中展示了如何制作一个简单的 mxml 或动作脚本组件来扩展诸如组合框之类的东西,但我不知道如何采用整个现有且独立运行的应用程序并将其变成一个可重复使用的组件。

基本上,我只想在另一个 Flex 项目中创建此应用程序的多个实例。

有人可以提供一点指导吗?

I have an application built in Flex Builder 3. It has a fair amount of mxml and as3 code which uses some other custom compenents. I have looked at the documentation on building components which shows how to make a simple mxml or action script component that extends something like a combobox, but I'm lost as to how to take a whole existing and independently functioning Application and turn it into a reusable component.

Basically, I'd just like to create multiple instances of this app inside of another flex project.

Anyone able to provide a little guidance?

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

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

发布评论

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

评论(2

你对谁都笑 2024-07-15 18:47:04

最简单的方法是将应用程序 mxml 标签与 VBox 标签交换...从而使其充当组件。

例如,如果这是您的应用程序:


//Foo.mxml
<mx:Appliction xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Label text = "foo" />
</mx:Appliction>

将其更改为:


//Foo.mxml
<mx:VBox>
    <mx:Label text = "foo" />
</mx:VBox>

然后您可以执行以下操作:


//App.mxml
<mx:Appliction 
    xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:local="your.package.scheme.*"
>
    <local:Foo />

</mx:Appliction>

如果您需要将任何数据传递给组件,您可能必须创建一些公共属性...

The easy thing to do is to swap the Application mxml tag with a VBox tag...thus making it act like a component.

e.g. If this were your application:


//Foo.mxml
<mx:Appliction xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Label text = "foo" />
</mx:Appliction>

change it to:


//Foo.mxml
<mx:VBox>
    <mx:Label text = "foo" />
</mx:VBox>

and then you can do something like this:


//App.mxml
<mx:Appliction 
    xmlns:mx="http://www.adobe.com/2006/mxml"
    xmlns:local="your.package.scheme.*"
>
    <local:Foo />

</mx:Appliction>

You may have to make some public properties if you need to pass in any data to the component...

简单气质女生网名 2024-07-15 18:47:04

如果您只是希望某个“父”Flex 应用程序嵌入该自主子应用程序的多个实例,那么您应该查看 Adob​​e 的 "嵌入资源类型" 文档,介绍如何将一个 SWF 文件嵌入到另一个 SWF 文件中。

从文档中:

您通常会嵌入 Flex 应用程序
当您不需要嵌入时
应用程序与交互
嵌入式应用程序。 如果嵌入
应用程序需要交互性
通过嵌入式应用程序,您
可能会考虑将其实施为
自定义组件,而不是作为
单独的应用程序。

如果您确实需要嵌入式应用程序和父应用程序之间的交互,您可以查看SWFLoader 控件。

If you simply want some "parent" Flex application to embed several instances of this autonomous child application, then you should see Adobe's "Embedding Asset Types" documentation, which describes how to embed one SWF file in another.

From the documentation:

You typically embed a Flex application
when you do not require the embedding
application to interact with the
embedded application. If the embedding
application requires interactivity
with the embedded application, you
might consider implementing it as a
custom component, rather than as a
separate application.

If you do require interaction between the embedded application and the parent application, you can look into the SWFLoader control.

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