我正在使用 Flash Professional CS6。它允许添加 Flex SDK 的 SWC 文件。我想要做的是将 mx.controls.Button 添加到舞台。代码运行良好,但按钮没有出现在舞台上。我在这段代码中做错了吗:
//f9 to open action editor
//in scene 1:
import mx.controls.Button;
var b:Button = new Button();
b.label = "My button";
b.width = 100;
b.height = 30;
b.visible = true;
stage.addChild(b);