未定义状态 flashbuilder 4.5

发布于 2024-11-17 08:17:14 字数 170 浏览 0 评论 0原文

我目前在切换到 Flex 4.5 时遇到一些问题。在某些组件中,我声明了 2 种状态(打开、关闭)。在创建应用程序时,我将所有组件设置为“关闭”状态。当使用flex 4.1启动ap时,没有问题。但现在我将版本更新到 4.5,我收到一条错误消息:“关闭”状态在运行时未定义。有人听说过某种问题吗?

感谢您的帮助。

I'm currently having some problems when switching to flex 4.5. In some components, I declared 2 states (opened, closed). At app creation, I set all the components to "closed" state. When launching the ap with flex 4.1, there are no problems. But now that I updated the version to 4.5, I got an error saying : "closed" state is undefined at runtime. Does someone heard about some kind of issues ?

Thanks for the help.

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

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

发布评论

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

评论(2

你怎么敢 2024-11-24 08:17:14

您可以直接在组件的标签中设置“currentState”。

示例组件:

<s:Group    xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            currentState="closed">

    <s:states> 
        <s:State name="closed"/>
        <s:State name="open"/>
    </s:states>

</s:Group>

You can set "currentState" directly in the component's tag.

Example Component:

<s:Group    xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark"
            xmlns:mx="library://ns.adobe.com/flex/mx"
            currentState="closed">

    <s:states> 
        <s:State name="closed"/>
        <s:State name="open"/>
    </s:states>

</s:Group>
來不及說愛妳 2024-11-24 08:17:14

谢谢你们的帮助,但我解决了问题。它链接到我应用于我的应用程序的石墨主题。我用默认的 Spark 主题替换了它。主题可能不是最新的 4.5 版构建器。不管怎样,我考虑了你的组件状态自我管理:)。

Thank you guys for the help but I solved the problem. It was linked to the graphite theme I applied to my app. I replaced it by the default spark theme. Themes may not be up to date with the new 4.5 version of the builder. Anyway, I took your component state self managment into account :).

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