At version 9 of Macro Scheduler you can make dialogs with the Dialog designer. One of the items you can choose is radio buttons.
The object for radio buttons you can make easy, but if you want more than one radio butten within the radio group (what most of the time is usefull) the user input is not so easy for making a radio group.
For example; If you want a radio button group where you can select between 'TV', 'Radio' or 'iPod', now you have to enter:
TV%CRLF%Radio%CRLF%iPod
I think this can much easier by writing (for example):
TV;Radio;iPod
By the copy statement to the clipboard (so you can use the dialog script into your macro), the text "TV;Radio;iPod" should converted to "TV%CRLF%Radio%CRLF%iPod" so that the scripts for dialogs can work.