<div dir="ltr">It seem that would be very nice and useful if the scripter could manage the following functions:<br><br>1) A value dialog with a list of radio-buttons, aimed to let the user choose an option between some:<br><br>>  radiobuttonsDialog(caption, message, list of strings [, defaultvalue]) -> string<br>>  e.g.:<br>>  radiobuttonsDialog('MyAppName', 'Choose a color for the background.',<br>>      ['White', 'Yellow', 'Orange', 'Red', 'Purple'], 'Yellow')<br><br><br>2) A value dialog with a combo-box, aimed to let the user choose an option between a lot:<br><br>>  comboDialog(caption, message, list of strings [, defaultvalue]) -> string<br>>  e.g.:<br>>  fontList = getFontList<br>>  comboDialog('MyAppName', 'Choose a font for the document.',<br>>      fontList, 'Times New Roman')<br><br>3) A value dialog with a list of check-boxes, aimed to let the user choose some options between some:<br><br>>  checkboxesDialog(caption, message, Dictionary of options) -> Dictionary of options<br>>  e.g.:<br>>  checkboxesDialog('MyAppName', 'Select the features that you want be implemented:',<br>>      {'Accountability': False,<br>>       'Marchantability': False,<br>>       'Readability': False,<br>>       'Drinkability': False})<br>><br>>  return<br>><br>>  {'Accountability': True,<br>>   'Marchantability': False,<br>>   'Readability': True,<br>>   'Drinkability': False})<br><br>I cannot code in C/C++, but these features shouldn't be too diffucult to implement, despite their sure usefulness.<br></div>