Monkey patches and Runtime Shared Libraries (RSLs)
03:08 AM
Monkey patching is replacing parts of the flex framework with your own classes. For example, you can copy mx.core.UIComponent to src folder of your project, modify it, and flex will use your modified class instead of framework’s one.
Genereally it’s considered to be evil, and I actually agree with this point of view. But sometimes you [...]
2