Courier 新字体有负面影响吗?

发布于 2024-08-28 02:44:26 字数 261 浏览 12 评论 0原文

我想在 flex textArea 中突出显示文本,但其 htmlText 不支持 我的文本的一部分 所以我正在寻找一种与 Courier new 相反的字体,当我将其嵌入 Flash 中并用该颜色书写时,我会为我的那部分文本获得突出显示效果text ,当我输入 我的文字的一部分

I want to make a text highlight in flex textArea but its htmlText doesn't support <font bgcolor='#FFFF00'> part of my text </font> so I'm searching for a font witch is the opposite of Courier new, when I embed it in flash, and write with that color I get highlight effect for that part of my text , as I type <font family="negativeOfCourier" color='#FFFF00'> part of my text </font>

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

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

发布评论

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

评论(2

↘人皮目录ツ 2024-09-04 02:44:26

此处显示白色文本

注意:我尝试将其格式化,但是SO 似乎不接受字体标签。

编辑:您可以访问 http://www.w3schools.com 自行查找这些内容。

<font style="font-family:courier;color:white;background-color:black;">white text goes here</font>

Note:I tried to post it formatted, but SO doesn't appear to accept font tags.

Edit: You can find this stuff out for yourself by going to http://www.w3schools.com.

溺孤伤于心 2024-09-04 02:44:26

您应该为此使用样式表。
例子:

var theCSS:String = ".normaltext{color:#FFFF00;font-family:Courier}.highlightedtext{color:#FFFF00;font-family:Arial}";
var theStyle:StyleSheet = new StyleSheet();
theStyle.parseCSS(theCSS);
theTextArea.styleSheet = theStyle;
theTextArea.htmlText = '<span class="normaltext">Normal text here, and</span><span class="highlightedtext"> the highlighted text here</span>';

You should use a StyleSheet for that.
Example:

var theCSS:String = ".normaltext{color:#FFFF00;font-family:Courier}.highlightedtext{color:#FFFF00;font-family:Arial}";
var theStyle:StyleSheet = new StyleSheet();
theStyle.parseCSS(theCSS);
theTextArea.styleSheet = theStyle;
theTextArea.htmlText = '<span class="normaltext">Normal text here, and</span><span class="highlightedtext"> the highlighted text here</span>';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文