Actionscript 错误无法导入库

发布于 2024-10-06 00:42:23 字数 377 浏览 3 评论 0原文

在下面的操作脚本文件中,我收到一条错误消息,指出无法导入 mx.controls.Label,如何解决此问题

  package {
    import flash.display.Sprite;
    import mx.controls.Label;

    public class cld extends Sprite
    {
        public function cld()
        {
            var myLabel:Label = new Label();
            myLabel.text = "hello";
            addChild(myLabel);
        }

    }

}

In the Below action script file i get an error saying cannot import mx.controls.Label,how is this to be resolved

  package {
    import flash.display.Sprite;
    import mx.controls.Label;

    public class cld extends Sprite
    {
        public function cld()
        {
            var myLabel:Label = new Label();
            myLabel.text = "hello";
            addChild(myLabel);
        }

    }

}

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

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

发布评论

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

评论(1

鲜肉鲜肉永远不皱 2024-10-13 00:42:23

确保它是 Flex 项目,并且在项目属性 -> Flex 构建路径 -> 库路径中导入框架。

Make sure it is Flex project and that in project properties->Flex Build Path->Library Path you import the framework.

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