본문 바로가기

Story/html/css

flash 줄바꿈 문제

반응형
flash 에서 text 를 읽어 들여 보여줄때 줄바꿈이 있는 text 가 flash 에서 보일때는 두줄이 바뀌어 보인다.
이것을 해결하는 방법은
- 첫번째 예
원래 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;
반응형