Hi,
I use CASTORGUI.GUISelect.addOptions() with this code:
var sel = new CASTORGUI.GUISelect("testSel", { x: 5, y: 10, w: 200, h: 40 }, gui, { alert("click") }, false);
for (var i = 0; i < 10; i++) {
sel.addOptions("value", "text"); // ????
}
mywin.add(sel);
But it seems not work.
However, it works without sel.addOptions("value", "text");
How can I use this GUI control method?
Thanks for your help!