Search found 2 matches

by ali
Fri Apr 10, 2015 5:11 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to auto-select radio buttons
Replies: 5
Views: 4187

Re: How to auto-select radio buttons

Below is snippet that does what I needed:
/*
on mouseUp
if the hilite of me then
set the hilite of btn "c2" to true
set the hilite of btn "c3" to true
else
set the hilite of btn "c2" to false
set the hilite of btn "c3" to false
end if
end mouseUp
*/
Note: c1, c2 and c3 are check-button names ...
by ali
Thu Apr 09, 2015 5:48 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: How to auto-select radio buttons
Replies: 5
Views: 4187

How to auto-select radio buttons

First time poster:
I have 3 radio buttons. I want radio buttons 2 and 3, to get auto-selected if radio button 1 is manually selected. I have searched for "radio buttons" and could not find relevant content.

Any help is appreciated.