world.SetFrameBackgroundColour
Sets the background colour of the overall MUSHclient frame
Prototype
void SetFrameBackgroundColour(long Colour);
Description
This lets you change the "main frame" background colour. This is, the colour of the area outside all windows. For example:
SetFrameBackgroundColour (ColourNameToRGB ("powderblue"))
The default is the default Windows background window colour, whatever that is (grey for me). You can go back to the default by setting the colour to 0xFFFFFFFF.
Lua example
SetFrameBackgroundColour (ColourNameToRGB ("powderblue"))
Lua notes
The same functionality is available in the Lua utils function:
utils.setbackgroundcolour (ColourNameToRGB ("powderblue"))
Return value
Nothing.