Question
Dropdown With Scrollbar
Hello!
I have a dowpdownlist with very many items, and I would like to show it with scollbars instead of a very long list.. I've read about the maximumSize property, but it do not seem to apply... Does someone know how to handle it or to add a scrollbar?
var myWin = new Window('dialog', 'My Long List');
myWin.orientation = 'column';
with(myWin){
myWin.sText = add('statictext', undefined, 'Select From List:');
myWin.myFontDrop = add('dropdownlist',undefined,undefined,{items:myLongList,);
myWin.myFontDrop.selection = 0;
myWin.btnOK = add('button', undefined, 'OK');
}
myWin.center();
