I’m sure it’s me, but how can I have more than one set of radio buttons?
Eg"
Option1: [A] [B]
Option2: [X] [Y] [Z]
It all displays fine, except A is highlighted by default. If I click X, A deselects. I’m looking for A/B for 1, XYZ for 2.
Using 2017.012 version.
-- Choose KM or Miles ssk.easyIFC:quickEmbossedLabel( group, "Metric/Imperial", 150, 100,"helvetica",24,{1,1,1} ) local distance = ssk.easyIFC:presetRadio( group, "default", 300, 100, 70, 40, "KM", onRelease , {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24}) distance2=ssk.easyIFC:presetRadio( group, "default", 400, 100, 70, 40, "Miles", onRelease, {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24} ) distance:toggle() -- Choose distance filter ssk.easyIFC:quickEmbossedLabel( group2, "Search Range", 150, 200,"helvetica",24,{1,1,1} ) local reach = ssk.easyIFC:presetRadio( group2, "default", 275, 200, 40, 40, "25", onRelease2 , {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24}) ssk.easyIFC:presetRadio( group2, "default", 325, 200, 40, 40, "50", onRelease2, {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24} ) ssk.easyIFC:presetRadio( group2, "default", 375, 200, 40, 40, "100", onRelease2, {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24} ) ssk.easyIFC:presetRadio( group2, "default", 425, 200, 40, 40, "250", onRelease2, {selRectFillColor = \_G\_,selLabelColor = \_R\_ ,labelSize = 24} ) reach:toggle()
Thoughts?