AS3 缩放文本函数导致与文本字段 HTML 格式冲突

发布于 2024-11-17 21:24:01 字数 969 浏览 3 评论 0原文

大家好,我正在使用下面的函数在运行时缩放动态字体大小,如下所示:

function scaleTextToFitInTextField( txt : TextField ):void{
 var f:TextFormat = txt.getTextFormat();
 f.size = ( txt.width > txt.height ) ? txt.width : txt.height;
 txt.setTextFormat( f );

 while ( txt.textWidth > txt.width - 4 || txt.textHeight > txt.height - 6 ){               
    f.size = int( f.size ) - 1;
    txt.setTextFormat( f );
}
}

scaleTextToFitInTextField( tf );
// tf is a dynamic multiline textfield on stage with dimension 150x150

这个想法是,当文本字段填充外部内容时,它会减小字体大小以使所有文本适合文本字段。这项工作到目前为止。

我现在最大的问题是这个函数会干扰文本字段 html 格式。例如;我加载外部 html:

<font size="-2">this text is way</font><br><font size="+5">TOO BIG</font><br>to fit in this box, but I'll give it a try!

将缩放函数应用于文本字段时,html 格式(大小变化)不起作用,但如果我删除缩放函数,它就会起作用。

理想情况下,如果文本太多而无法容纳,我希望能够缩放字体,并且也能够应用 html 格式。

请有人帮忙。我正在使用 CS5

非常感谢。

Hello Guys I am using the below function to scale dynamic font size at run time as thus:

function scaleTextToFitInTextField( txt : TextField ):void{
 var f:TextFormat = txt.getTextFormat();
 f.size = ( txt.width > txt.height ) ? txt.width : txt.height;
 txt.setTextFormat( f );

 while ( txt.textWidth > txt.width - 4 || txt.textHeight > txt.height - 6 ){               
    f.size = int( f.size ) - 1;
    txt.setTextFormat( f );
}
}

scaleTextToFitInTextField( tf );
// tf is a dynamic multiline textfield on stage with dimension 150x150

The idea is that when the textfield is populated with external content, it reduces the font size to fit all the text into the texfield. This work so far.

My biggest problem now is that this function interferes with the textfield html formatting. For instance; I Load an external html:

<font size="-2">this text is way</font><br><font size="+5">TOO BIG</font><br>to fit in this box, but I'll give it a try!

With the scale function applied to the textfield, the html formatting (size variations) does not work, but if I remove the scale function, it does.

Ideally, I want to be able to scale the font if text is too much to fit and be able to apply html format as well.

Somebody pls help. I am using CS5

Many thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我的黑色迷你裙 2024-11-24 21:24:01

如果您将 htmlText 包装在 中,它可能会起作用:

<![CDATA[<font size="-2">this text is way</font><br><font size="+5">TOO BIG</font><br>to fit in this box, but I'll give it a try!]]>

否则,您可以尝试将 TextField 包装在 Sprite 中并缩放 Sprite? 如何做您使用as3从中心点缩放flash中的动态文本字段吗?

It may work if you wrap the htmlText in <![CDATA[]]>:

<![CDATA[<font size="-2">this text is way</font><br><font size="+5">TOO BIG</font><br>to fit in this box, but I'll give it a try!]]>

Otherwise, you could try wrapping the TextField in a Sprite and scale the Sprite instead? How do you scale a dynamic textfield in flash from the center point using as3?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文