Blockland Forums > Modification Help
GUIPopupMenuProfile Help
Ipquarx:
there are addrow and removerow commands i believe.
Jasa1:
--- Code: ---clear();
add();
--- End code ---
Solved.
jes00:
--- Quote from: Jasa1 on November 19, 2011, 05:40:00 PM ---
--- Code: ---clear();
add();
--- End code ---
Solved.
--- End quote ---
More in depth:
To add a row to a list first define the list:
--- Code: ---%list = CONTROL_NAME;
--- End code ---
Now add to it:
--- Code: ---%list.addRow(ROW_NUMBER, "WORDS");
--- End code ---
Now if you ever want to clear the list do:
--- Code: ---%list.clear();
--- End code ---
For more go HERE.