AS3:使用 StyleManager 类设置 TextField 的默认字体、颜色等

发布于 2024-07-21 00:26:51 字数 671 浏览 6 评论 0原文

我试图让 StyleManager 产生一些效果,但无济于事。

package {
  import flash.text.*;
  import flash.display.Sprite;
  import fl.managers.StyleManager;

  public class StyleManagerExample extends Sprite {

    public function StyleManagerExample():void {

      StyleManager.setComponentStyle(TextField, "selectable", false);

      var exampleTextField:TextField = new TextField();
      exampleTextField.text = "Something";

      addChild(exampleTextField);

    }

  }
}

无值(例如selectablecolortextFormat等,使用setStylesetComponentStyle< /code> 或其他)似乎对结果有任何影响。

我缺少什么?

I'm trying to get StyleManager to have some effect, to no avail.

package {
  import flash.text.*;
  import flash.display.Sprite;
  import fl.managers.StyleManager;

  public class StyleManagerExample extends Sprite {

    public function StyleManagerExample():void {

      StyleManager.setComponentStyle(TextField, "selectable", false);

      var exampleTextField:TextField = new TextField();
      exampleTextField.text = "Something";

      addChild(exampleTextField);

    }

  }
}

No value (eg. selectable, color, textFormat, etc., using setStyle, setComponentStyle or otherwise) seems to have any effect on the outcome.

What am I missing?

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

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

发布评论

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

评论(2

有深☉意 2024-07-28 00:26:51

抱歉,StyleManager 仅影响组件(fl.controls 包中的 IE 类),并且不能用于更改 TextField 类实例的样式或设置。

还有其他方法(某种程度上)可以完成您想要做的事情。 例如,如果您想使用文本字段,但不想更改每个实例的一堆设置,您可以对 TextField 类进行子类化并更改构造函数中的一堆设置,然后只需在各处使用 TextField 子类即可的文本字段。

希望这有帮助,祝你好运。

Sorry, but StyleManager only affects components (I.E. classes in the fl.controls package), and can't be used to change styles or settings for instances of the TextField class.

There are other ways (kind of) to do what you're trying to do. For example, if you would like to use text fields but don't want to change a bunch of settings for each instance, you could subclass the TextField class and change a bunch of settings in the constructor, then just use your TextField subclass everywhere instead of TextField.

Hope this helps, and good luck.

人疚 2024-07-28 00:26:51

如果您想影响文本字段的文本颜色。 你可以这样做,所以

myTextfield.textColor = "0xFF0000";

我希望这会有所帮助。

If you wanted to affect the text colour of a textField. You can do it like so

myTextfield.textColor = "0xFF0000";

I hope that helps.

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