이번에 모듈화 프로젝트를 하면서 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>
<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>
<ns:MyComponent xmlns:ns="my.package.*"
xmlns:mx="http://www.adobe.com/2006/mxml"
>
<ns:states>
</ns:states>
</ns>
해결책이란 바로 root태그의 네임스페이스에 맞게 수정하여주기만 하면 됩니다.
하지만 정확하게 이해가 가진 않습니다 .. 누가 좀;; 알려주세요 ;;
'Flex / AIR / AS' 카테고리의 다른 글
[Flex3.0] HttpService 사용시 Parameters 보내기 (0) | 2009.04.14 |
---|---|
[행사] Flash Platform 한글문제 공동대응팀 해오름 모임 (0) | 2009.04.09 |
[Flex3.0] Module 형변환 에러 (0) | 2009.03.10 |
[Flex3.0] CSS를 사용하여 FormItem 라벨 정렬 (0) | 2009.02.16 |
[Flex3] ItemRenderer나 ItemEditor에 사용되는 컴포넌트에 StyleName 적용시키자. (2) | 2009.02.11 |