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内
#--------------------------------------------------------------------------
# ● 获取文字色
# n : 文字色编号 (0~7)
#--------------------------------------------------------------------------
def text_color(n)
case n
when 0
return Color.new(255, 255, 255, 255)
when 1
return Color.new(128, 128, 255, 255)
when 2
return Color.new(255, 128, 128, 255)
when 3
return Color.new(128, 255, 128, 255)
when 4
return Color.new(128, 255, 255, 255)
when 5
return Color.new(255, 128, 255, 255)
when 6
return Color.new(255, 255, 128, 255)
when 7
return Color.new(192, 192, 192, 255)
else
normal_color
end
end
复制代码
这里有说明
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1