Hello,
i want to extend the core FlexSprite class AND have all the subclasses
(eg. UIComponent) in the flex framework use the modified FlexSprite
class.
so i would make a packager and the class would extend FlexSprite:
class ModFlexSprite extends FlexSprite{
//more properties here...
}
so i did this, and my idea was to just change the core UIComponent.as
class to extend ModFlexSprite instead of FlexSprite. So this leads to
question one:
Is this the easiest way to achieve this?
If so, the i guess i have to "recompile" the framework somehow, since
building and running my app alone doesn't work. Question 2:
how do i recompile the Flex Framework?
thanks in advance! -b