Place text absolutely on dialogue/panel
Since there is no possibility to make the label of a Radiobutton use multiple lines, I try to place the second line as Statictext below the group of radio buttons.
With this snippet
wSaveOld.g1.rb = wSaveOld.g1.add('group',undefined);
wSaveOld.g1.rb.height = 15;
wSaveOld.g1.rb.rb8 = wSaveOld.g1.rb.add('radiobutton',undefined,"FM-08");
...
wSaveOld.g1.rb.rb17 = wSaveOld.g1.rb.add('radiobutton',undefined,"FM-17");
wSaveOld.rbtxt = wSaveOld.add('statictext',undefined,"[2015] [2017] [2019] [2020] [2022]");
wSaveOld.rbtxt.indent = 400;
I get this presentation:

However, I want to have the additional text closer to the radio buttons like this:

Hence in the snippet I replaced the last line by
wSaveOld.rbtxt.bounds = {x:400, y:30, width:270, height:15};
However, this has no effect at all! It turns out that only the width parameter is handled (smaller values truncate the string).
► Any ideas how to get the desired presentation?


