Flash Builder 中的多个初始值设定项值
最后决定尝试 Flash Builder 而不是 FlashDevelop,并开始关注我的第一个应用程序。我正在构建一个 AIR 应用程序并下载了最新的 SDK 并将其安装在 Flash Builder 路径中。
当我添加一些简单的项目时,它们都会出错。我添加了这段代码:
<s:layout>
<s:VerticalLayout paddingLeft="10" paddingTop="10"/>
<s:Label id="myLabel" text="Some text stuff I typed."/>
<s:Button click="myLabel.text='Some stuff the button typed'"/>
</s:layout>
并且我在每个 Spark 项目(布局除外)上收到一个错误,内容如下: 在“布局”的初始值设定项中,目标类型spark.layouts.supportClasses.LayoutBase 的多个初始值设定项值。
我用谷歌搜索过,没有任何实际结果。有谁知道这个错误告诉我什么? SDK安装有问题吗?我按照 Lynda.com 视频中的安装说明进行操作。
感谢您的帮助!
Finally decided to try Flash Builder rather than FlashDevelop and got caught up on my very first app. I'm building a AIR app and downloaded the latest SDK and installed it in the Flash Builder path.
When I add a few simple items they all get errors. I added this code:
<s:layout>
<s:VerticalLayout paddingLeft="10" paddingTop="10"/>
<s:Label id="myLabel" text="Some text stuff I typed."/>
<s:Button click="myLabel.text='Some stuff the button typed'"/>
</s:layout>
And I get an error on each spark item (except layout) that says:
In initializer for 'layout', multiple initializer values for target type spark.layouts.supportClasses.LayoutBase.
I've searched google with no real results. Does anyone know what this error is telling me? Is there a problem with the SDK installation? I followed install instructions from a Lynda.com vid.
Thanks for the help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您正在使用哪个 Flex SDK 或 Flash 构建器版本,但在版本 4 中尝试此操作,
您在结束布局标记之后而不是在其中创建组件。
Not sure which Flex SDK or Flash builder version you are working with but in version 4 try this,
You create the components after the closing layout tag not inside it.