Nope...here's the entire code:
PHP Code:
//#CLIENTSIDE
public function showParty() {
PartyMain.destroy();
new GuiWindowCtrl(PartyMain) {
x = GraalControl.width - 180; y = 0;
extent = {180, 350};
alpha = .5;
text = " Party";
new GuiScrollCtrl(PartyListScroll) {
x = 7; y = 25;
extent = {165, 150};
hScrollBar = "alwaysOff";
vScrollBar = "dynamic";
new GuiTextListCtrl("Test_List") {
profile = GuiBlueTextListProfile;
x = y = 0;
width = 140;
fitparentwidth = true;
clearrows();
addrow(0,"TextList");
addrow(1,"Second line");
setSelectedRow(1);
}
}
}
}