因此,如果我想在as3中模仿链接,那么当我设置
时myFormat.underline = true;
下划线直接位于我的文字下方。有什么方法可以设置下地带的间距吗?感谢。
答案 0 :(得分:0)
您可以绘制一条线而不是使用下划线。然后按你想要的方式放置它。只需使其与文本颜色相同即可。
AS 3中的类似内容:
myItem.graphics.lineStyle(1);
myItem.graphics.moveTo(0,0); ///This is where we start drawing
myItem.graphics.lineTo(350, 600);