Flash Pro IDE无法找到RadioButton

时间:2013-02-24 14:01:04

标签: actionscript-3 flash

我尝试用AS3,Flash& amp; XML。 当我创建一个单选按钮时,Flash会自动在我的文档顶部创建一个导入。精细!

但是当我测试我的场景时,我收到了一个错误: 1172:定义fl.controls.RadioButton未找到

var rb:RadioButton = new RadioButton();
rb.x = 50;
rb.y = 150;
rb.label = "Testbutton";
rb.value = "100";

为什么?

因此,对于我在笔记本电脑上损坏了某些东西的情况,我在我的另一台PC上安装了新的30天试用版......但同样的错误。 flash.swc就像每个Flash Pro IDE中的自己的目录结构一样。 所以这不可能是失败。 自动完成也向我显示了所有可能的import语句 “import fl.controls.RadioButton”

有人知道这个问题吗? 为什么只有RadioButton?

1 个答案:

答案 0 :(得分:1)

您必须从Window-Components导入库面板。

参考以下图片

enter image description here enter image description here

您应该按如下方式导入Radiobutton:

import fl.controls.RadioButton;

var rb:RadioButton = new RadioButton();
rb.x = 50;
rb.y = 150;
rb.label = "Testbutton";
rb.value = "100";