flex3 组件不能使用swc文件?
如题,下载了个RichTextField2.0,在mx:application中加了一个 xmlns:text="flash.text.*"。然后就可以使用<text:TextField>这种标签了,但是在组件中,也是这样加了这一句,却提示出错:
Component declarations are not allowed here. (Note: visual children must
implement mx.core.IUIComponent)
。难道组件不能使用这个文件?
[解决办法]
当然能使用SWC文件
标签式的定义的的组件必须实现IUIComponent接口(可视化组件)
你SWC中的那个组件肯定不是继承UIComponent,所以才报错~~~