Re: Toggling a Single Radio Button

2015-03-23 Thread Bob Sneidar
I’ve seen radio buttons set up to work like checkboxes before, mostly in web browser built into appliances, and thought what an odd way to use a checkbox! I agree that single on/off choices should be checkboxes, and multiple choice should be a group of radio buttons. Bob S > On Mar 9, 2015,

Re: Toggling a Single Radio Button

2015-03-10 Thread JB
Good point, Mark. So I just changed some buttons I had that were checkboxes to radio and vice versa. Every little thing helps to make a professional product. John Balgenorth On Mar 9, 2015, at 5:29 PM, Mark Wieder wrote: > Ray- > > Monday, March 9, 2015, 11:58:42 AM, you wrote: > >> Does a

Re: Toggling a Single Radio Button

2015-03-09 Thread Mark Wieder
Ray- Monday, March 9, 2015, 11:58:42 AM, you wrote: > Does anybody know how to toggle a single radio button so it behaves like > a check box? That is, if it's highlighted when you click it the button > becomes dehighlighted and vice versa? I see you got your answer already. But I have to ask: W

Re: Toggling a Single Radio Button

2015-03-09 Thread Ray
Many thanks! The auto highlight was my issue. On 3/9/2015 5:06 PM, Scott Rossi wrote: Once again, Klaus has answered the question before it was asked. :-) Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 3/9/15, 11:02 AM, "Klaus major-k" wrote: Hi Ray, Am 09.03.2

Re: Toggling a Single Radio Button

2015-03-09 Thread Klaus major-k
Hi Jaqueline, > Am 09.03.2015 um 20:20 schrieb J. Landman Gay : > > On 12/9/2017 12:12 AM, Klaus major-k wrote: >> Do you want a copy of Jaque's You-will-know-knew-what stack? >> As you can see, it really works! :-D > Give me back that remote controller, you thief! I knew I never should have > p

Re: Toggling a Single Radio Button

2015-03-09 Thread J. Landman Gay
On 3/9/2015 2:12 PM, Klaus major-k wrote: Do you want a copy of Jaque's You-will-know-knew-what stack? As you can see, it really works! :-D Give me back that remote controller, you thief! I knew I never should have put batteries in that thing. -- Jacqueline Landman Gay | jac...@h

Re: Toggling a Single Radio Button

2015-03-09 Thread Klaus major-k
Hi Scott, > Am 09.03.2015 um 21:06 schrieb Scott Rossi : > Once again, Klaus has answered the question before it was asked. :-) Yo, and I even tested the "autohilite" thing to not answer something dumb! Do you want a copy of Jaque's You-will-know-knew-what stack? As you can see, it really works

Re: Toggling a Single Radio Button

2015-03-09 Thread Scott Rossi
Once again, Klaus has answered the question before it was asked. :-) Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 3/9/15, 11:02 AM, "Klaus major-k" wrote: >Hi Ray, > >> Am 09.03.2015 um 19:58 schrieb Ray : >> >> Does anybody know how to toggle a single radio button

Re: Toggling a Single Radio Button

2015-03-09 Thread Scott Rossi
Disable the autoHilite of the radio. And you can also use this for the script: on mouseUp set the hilite of me to not the hilite of me end mouseUp Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 3/9/15, 10:58 AM, "Ray" wrote: >Does anybody know how to toggle a si

Re: Toggling a Single Radio Button

2015-03-09 Thread Marty Knapp
Ray, Turn off Auto-hilite in the property inspector and then it will work as you want. Marty K on mouseUp if the hilite of me = true then set the hilite of me to false else set the hilite of me to true end mouseUp ___ use-livecode mai

Re: Toggling a Single Radio Button

2015-03-09 Thread Klaus major-k
Hi Ray, > Am 09.03.2015 um 19:58 schrieb Ray : > > Does anybody know how to toggle a single radio button so it behaves like a > check box? That is, if it's highlighted when you click it the button becomes > dehighlighted and vice versa? > This does not work: > on mouseUp > if the hilite of m

Toggling a Single Radio Button

2015-03-09 Thread Ray
Does anybody know how to toggle a single radio button so it behaves like a check box? That is, if it's highlighted when you click it the button becomes dehighlighted and vice versa? This does not work: on mouseUp if the hilite of me = true then set the hilite of me to false else s