简单文本格式管理器AS3

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单文本格式管理器AS3相关的知识,希望对你有一定的参考价值。

http://leongaban.com/com/leongaban/Snipplr/Model/Fonts.as
  1. package com.leongaban.Snipplr.Model
  2. {
  3. import flash.text.Font;
  4. import flash.text.TextFormat;
  5. import flash.text.TextFormatAlign;
  6. import flash.text.TextFieldAutoSize;
  7. import flash.text.*;
  8.  
  9. public class Fonts
  10. {
  11. public static var data:Object = {};
  12. public static var customFormat1 = new TextFormat();
  13. public static var customFormat2 = new TextFormat();
  14.  
  15. customFormat1.font = "Arial";
  16. customFormat1.size = 14;
  17. customFormat1.bold = true;
  18. customFormat1.color = 0x000000;
  19. customFormat1.align = TextFormatAlign.LEFT;
  20.  
  21. customFormat2.font = "Arial";
  22. customFormat2.size = 11;
  23. customFormat2.bold = false;
  24. customFormat2.color = 0x000000;
  25. customFormat2.align = TextFormatAlign.LEFT;
  26. }
  27. }
  28.  
  29.  
  30. // How to use in other Classes:
  31.  
  32. /*videoTitle.defaultTextFormat = Fonts.customFormat1;
  33. videoTitle.border = false;
  34. videoTitle.embedFonts = false;
  35. videoTitle.selectable = false;
  36. videoTitle.mouseEnabled = false;
  37. videoTitle.x = 5;
  38. videoTitle.y = 8;
  39. videoTitle.width = titleSize;
  40. videoTitle.height = 30;
  41. videoTitle.text = titleString;
  42.  
  43. addChild(videoTitle);*/

以上是关于简单文本格式管理器AS3的主要内容,如果未能解决你的问题,请参考以下文章

AS3里【TextField】于【TextArea】有啥区别?

如何在片段着色器中平铺部分纹理

AS3加载网页文本时候以HTML代码的形式显示了 我想让他以正常的方式显示,或者怎么解析HTML代码呢

AS3动态文本粗体格式

如何以不同的方式格式化不同的文本行,从在 AS3 中创建的文本字段,从 txt 文件填充文本?

ActionScript 3 AS3动态文本粗体格式