반응형
flash 에서 text 를 읽어 들여 보여줄때 줄바꿈이 있는 text 가 flash 에서 보일때는 두줄이 바뀌어 보인다.
이것을 해결하는 방법은
- 첫번째 예
- 두번째 예
이것을 해결하는 방법은
- 첫번째 예
원래 code
_root.txt_movie.txt.txt.text = xml.firstChild.childNodes[over-1].attributes.txt_2;
변경 code
_root.txt_movie.txt.txt.text = xml.firstChild.childNodes[over-1].attributes.txt_2;
변경 code
tmptxt = xml.firstChild.childNodes[over-1].attributes.txt_2;
arr = tmptxt.split("\n");
tmptxt = arr.join("");
_root.txt_movie.txt.txt.text = tmptxt;
- 두번째 예
var tmpT = xml.firstChild.childNodes[over-1].attributes.txt_2;
while(tmpT.indexOf("\n")!=-1){
tmpT = tmpT.substr(0,tmpT.indexOf("\n"))+tmpT.substr(tmpT.indexOf("\n")+1);
};
_root.txt_movie.txt.txt.text = tmpT;
};
_root.txt_movie.txt.txt.text = tmpT;
반응형
'Story > html/css' 카테고리의 다른 글
텍스트 박스에 입력시 자동완성 기능 없애기 (0) | 2011.11.15 |
---|---|
마우스 오버시 변하는 스타일시트 (0) | 2011.11.15 |
긴 도메인을 짧게 줄여주는 서비스 (0) | 2011.03.05 |
판도라 tv 동영상 api 연동하기 (0) | 2011.03.05 |
html 소스에 원화(통화표시)를 할때 역슬레쉬로 나올때 처리방법 (1) | 2010.11.25 |