1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
//
// Name: status label include file
// License: Public Domain
// Author: Matthew Gates
// Description: provide a simple status label function for use in other scripts
//
var rootLabelText = "";
var statusLabelId = -1;
function useStatusLabel(root, x, y, size, color)
{
rootLabelText = root
statusLabelId = LabelMgr.labelScreen("", x, y, true, size, color);
}
function status(text)
{
if (statusLabelId!=-1)
{
if (text!="")
{
LabelMgr.setLabelText(statusLabelId, rootLabelText + text);
}
else
{
LabelMgr.setLabelText(statusLabelId, "");
}
}
}
|