input text관련 leading 문의입니다.
목련
2023.04.01
도움말에 나온대로
var my_fmt:TextFormat = new TextFormat();
my_fmt.leading = 10;
this.createTextField(my_txt, 1, 100, 100, 100, 100);
my_txt.multiline = true;
my_txt.wordWrap = true;
my_txt.border = true;
my_txt.text = This is my first text field object text;
my_txt.setTextFormat(my_fmt);
소스를 실행시키니 실행이 잘 되었습니다. 그래서 input text에도 그대로 적용새켰더나 한줄만 leading가 적용되고 이후의 줄부터는 기본값으로 줄간격이 되네요..
input 텍스트에도 적용될거같은데 어떻게 수정해야 할까요?