0
私はUITextFieldをマルチラインで使用しており、必要に応じてライン指定を追加したいと考えています。フレックスでUITextFieldの指定された線を指定する方法は?
フレックスアクションスクリプトで行う方法。
よろしく
私はUITextFieldをマルチラインで使用しており、必要に応じてライン指定を追加したいと考えています。フレックスでUITextFieldの指定された線を指定する方法は?
フレックスアクションスクリプトで行う方法。
よろしく
SOBIありがとう作品のTextFormat
var newtextformat:TextFormat = new TextFormat();
newtextformat.size = 12;
newtextformat.color = dayTextColor;
newtextformat.bold = false;
newtextformat.align = "left";
newtextformat.font = "Verdana";
newtextformat.leading = 5;//here you ca set line specing
try{
timetext.setTextFormat(newtextformat,0,timetext.length);
}
catch(err:Error){}
timetext.multiline = true;
を使用して行うことができます – Badr