how to resolve the UIComponent was not found in action script
am creating an action script class MyCircle extends UIComponent.....some code
when i compile i get error as col: 28 Error: The definition of base class UIComponent was not found.
class MyCircle extends UIComponent
what i have t开发者_Go百科o do ^
Add this at the beginning :
import mx.core.UIComponent;
精彩评论