AS UTF-8 관련글

Action Script 2009. 8. 24. 17:37
□ UTF-8 관련 링크

□ 내용 요약
  • SWF는 내부적으로 UTF-8만 다루며 이것을 바꾸는 방법은 없다.
  • 코드페이지를 지정하는 방법은 없다.
  • useCodepage가 true인 경우는 SWF가 수행되는 운영체제의 코드페이지를 따라가며,
  • false인 경우는 유니코드(UTF-8)을 사용하게 된다.
System.useCodePage = false; // 코드페이지 사용 안함(UTF-8)
trace(escape("abc가나다"));
System.useCodePage = true;  // 코드페이지 사용(EUC-KR)
trace(escape("abc가나다"));
posted by 느릅나무™

AS Debugging tool Alcon

Action Script 2009. 7. 7. 17:32
□ Flex / AIR / Flash 디버깅 툴 Alcon
○ 공식 홈페이지 : http://blog.hexagonstar.com/alcon
posted by 느릅나무™