[Error] Could not resolve <mx:states> to a component implementation


이번에 모듈화 프로젝트를 하면서 module 을 상속받아  사용하게 되었습니다.

처음엔 문제 없이 잘되던가 싶더니
제목과 같은 "Could not resolve <mx:states> to a component implementation" 에러가 발생하였습니다.

<mx:states> 사용으로 발생하는 문제였습니다. 전 바로 구글링에 들어갔습니다

몇번 검색하다 보니 바로 나오더군요 ㅎㅎ
http://www.nabble.com/Flex-component-states-td8227618.html

- Error -

<ns:MyComponent xmlns:ns="my.package.*"

                 xmlns:mx="http://www.adobe.com/2006/mxml"
>
    <mx:states>
    </mx:states>
</ns>


- Good -
<ns:MyComponent xmlns:ns="my.package.*"
                 xmlns:mx="http://www.adobe.com/2006/mxml"
>
    <ns:states>
    </ns:states>
</ns>

해결책이란 바로 root태그의 네임스페이스에 맞게 수정하여주기만 하면 됩니다.

하지만 정확하게 이해가 가진 않습니다 .. 누가 좀;; 알려주세요 ;;