Script function
world.InfoColour
Read about scripting
Type
Method
Summary
Sets the colour of the foreground (text color) for the info bar
Prototype
void InfoColour(BSTR Name);
View list of data type meanings
Description
Sets the text colour for subsequent text written to the info bar with world.Info.
The colours can either be named (eg. "red", "blue", "green", "brown") or supplied as HTML colour codes (eg. "#010203"). For HTML colours, the leading "#" is required.
The list of colour names recognised can be found by using MUSHclient's "colour picker" (Ctrl+Alt+P), or by using the function:
world.Debug "colours"
Available in MUSHclient version 3.29 onwards.
VBscript example
world.InfoColour "red"
Jscript example
world.InfoColour ("red");
PerlScript example
$world->InfoColour ("red");
Python example
world.InfoColour ("red")
Lua example
InfoColour ("red")
Return value
Nothing.
See Also ...
Topic
Info bar - programmable information bar
Functions
(Info) Adds text to the "info" tool bar
(InfoBackground) Sets the background colour for the info bar
(InfoClear) Clears all text from the info bar
(InfoFont) Changes the font, font size and style for text on the info bar
(SetStatus) Sets the status line text
(ShowInfoBar) Shows or hides the "info" tool bar
(Help topic: function=InfoColour)