I have a common library that I share between my projects. The way I have
confugired it is like this:
I have added common library SWC to each project's libray path. When I want to
at a component from common SWC to my project's mxml I am creating a new
namespace xmlns:ns1="modulecode.*" where modulecode is under src of my common
library. Then in my mxml file that component is described as following:
..
<mx:Component>
<modulecode:boldDataGridCell>
</modulecode:boldDataGridCell>
</mx:Component>
...
Works fine. Now, I have added another component called
"checkBoxStopPropagation" to the common library but the same approach is not
working. I am getting:
Could not resolve <ns1:checkBoxStopPropagation> to a component implementation.
Plus, intellisence is not even showing that component while it show the other
one. What's a deal here?
Thanks