Project1

标题: 新人求解,如何在对话框更改文字颜色? [打印本页]

作者: asd904433675    时间: 2013-9-20 20:22
标题: 新人求解,如何在对话框更改文字颜色?
要用什么来表示...数字几分别对应哪种颜色....什么的。
作者: myownroc    时间: 2013-9-20 20:58
在 显示文章 的框中 输入 /c[x] 改变颜色
作者: 美丽晨露    时间: 2013-9-20 20:58
\c[0-7]在显示文章中使用······
显示的颜色分别在windows_base内
  1. #--------------------------------------------------------------------------
  2.   # ● 获取文字色
  3.   #     n : 文字色编号 (0~7)
  4.   #--------------------------------------------------------------------------
  5.   def text_color(n)
  6.     case n
  7.     when 0
  8.       return Color.new(255, 255, 255, 255)
  9.     when 1
  10.       return Color.new(128, 128, 255, 255)
  11.     when 2
  12.       return Color.new(255, 128, 128, 255)
  13.     when 3
  14.       return Color.new(128, 255, 128, 255)
  15.     when 4
  16.       return Color.new(128, 255, 255, 255)
  17.     when 5
  18.       return Color.new(255, 128, 255, 255)
  19.     when 6
  20.       return Color.new(255, 255, 128, 255)
  21.     when 7
  22.       return Color.new(192, 192, 192, 255)
  23.     else
  24.       normal_color
  25.     end
  26.   end
复制代码
这里有说明




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1