如何在Flex Builder中使用Flash CS3组件
经过我的多次测试,发现直接引用Flash的SWC包只能获得相应的 import flash.display.Sprite; import fl.controls.TextArea; public class V3Test extends Sprite { public function V3Test() { var t:TextArea = new TextArea(); t.text = "You're not cookin'"; addChild(t); } } }?
? ? 10) Run the project.