我可以在 Flex 中同一项目中的两个应用程序之间共享 .as 文件吗
我的项目“测试”中有两个应用程序,应用程序是 one.mxml 和 Two.mxml,我想在两个应用程序中使用相同的 main.as 文件,
<script source='main.as'/>
当两个应用程序都运行时,我可以从 main.as 访问两个应用程序的组件吗同时。
提前致谢
Prashant Dubey
I have two applications in my project 'test' the applications are one.mxml and two.mxml and i want to use the same main.as file in both using
<script source='main.as'/>
Can I access the components of both applications from main.as when both are running simultaniously.
Thanks in Advance
Prashant Dubey
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你如何编译你的项目?您使用的是哪个版本的 Flex/Flash Builder?另请注意,脚本文件是在编译时而不是运行时共享的。
How do you compile your projects? Which version of Flex/Flash Builder are you using? Also to note, script files are shared at compile time, not runtime.