Ok so I have a hard one for all of you pros out there. I have a selection grid. I want to decrease the font size of the strings displayed in the selection boxes. How can I do this?
NOTE: the selection grid is created entirely via script.
static var selStrings : String[] = ["", "", "",
"", "", "", "", "", "",
"", "", ""];
.... .... ....
if(blnMoreI == true){
selGridInt = GUI.SelectionGrid (Rect ((.755 * SWidth),SHeight,(.24 * SWidth),150), selGridInt, selStrings, 3);
}else{
prevGridInt = selGridInt;
selGridInt = GUI.SelectionGrid (Rect ((.755 * SWidth),SHeight * .60,(.24 * SWidth),150), selGridInt, selStrings, 3);
}