Flash Builder 中的多个初始值设定项值

发布于 2024-10-18 14:25:52 字数 637 浏览 2 评论 0原文

最后决定尝试 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 技术交流群。

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

发布评论

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

评论(1

和影子一齐双人舞 2024-10-25 14:25:52

不确定您正在使用哪个 Flex SDK 或 Flash 构建器版本,但在版本 4 中尝试此操作,

<s:layout>
    <s:VerticalLayout paddingLeft="10" paddingTop="10"/>
</s:layout>       
<s:Label id="myLabel" text="Some text stuff I typed."/>
<s:Button click="myLabel.text='Some stuff the button typed'"/>

您在结束布局标记之后而不是在其中创建组件。

Not sure which Flex SDK or Flash builder version you are working with but in version 4 try this,

<s:layout>
    <s:VerticalLayout paddingLeft="10" paddingTop="10"/>
</s:layout>       
<s:Label id="myLabel" text="Some text stuff I typed."/>
<s:Button click="myLabel.text='Some stuff the button typed'"/>

You create the components after the closing layout tag not inside it.

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