I'm making a party menu for Thamhic, and inside it I want a list of all the players in the party. But I'm having a bit of trouble with the GuiTextListCtrl()
PHP Code:
new GuiScrollCtrl(PartyListScroll) {
x = 7; y = 25;
extent = {165, 150};
hScrollBar = "alwaysOff";
vScrollBar = "dynamic";
new GuiTextListCtrl(PartyList) {
x = y = 0;
width = 145;
fitparentwidth = true;
clearRows();
addrow(1, "Test");
setSelectedRow(1);
}
}
The Text list doesn't show at all...a bit frustrating.