如何从其他 mxml 文件打开 mxml 文件?
在我的 Flex 3 应用程序中,我维护两个 mxml
文件,即 one.mxml
和 two.mxml
。我如何从 one.mxml
调用 two.mxml
。我不想使用不同 mxml
文件中的任何变量。我想重定向它。怎么可能呢?提前致谢
In my flex 3 application, i am maintaining two mxml
files say one.mxml
and two.mxml
. How can i call two.mxml
from one.mxml
. I don't want to use any variables from different mxml
files. I want to redirect it. How it can be? Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个,
我在调试我正在开发的项目时偶然发现了这个。不确定它是否已优化,但它应该可以工作。
Try this
I stumbled upon this while debugging a project I am working on. Not sure if it is optimised anyway but it should work.
您可以简单地创建一个实例,然后将其添加到阶段:
var one:One=new One();
添加元素(一个);
但不要忘记,one.mxml 一定不能是一个应用程序,而只能是一个组件。如果是这样,则必须重新编辑 mxml 的主节点。
you can simply create an instance, then add it to stage:
var one:One=new One();
addElement(one);
but don't forget, one.mxml must not be an application, only a component. if it is so, you have to reedit the main node of the mxml.