function ScoreBoardGUI::resetScores(%this)
{
for (%idx = 0; %idx < ScoreBoardGUIList.rowCount(); %idx++)
{
%text = ScoreBoardGUIList.getRowText(%i);
%text = setField(%text, 1, "0");
%text = setField(%text, 2, "0");
%text = setField(%text, 3, "0");
ScoreBoardGUIList.setRowById(ScoreBoardGUIList.getRowId(%idx), %text);
}
ScoreBoardGUIList.clearSelection();
}