Actionscript 错误无法导入库
在下面的操作脚本文件中,我收到一条错误消息,指出无法导入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保它是 Flex 项目,并且在项目属性 -> Flex 构建路径 -> 库路径中导入框架。
Make sure it is Flex project and that in project properties->Flex Build Path->Library Path you import the framework.