Is there a way to query the current status of a radio button?
searching for radio button in the dictionary provides no information at all?
query the current status of a radio Button
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: query the current status of a radio Button
Hi Nakia,
if i understand what you want you can use a script like that:
Best regards
Jean-Marc
if i understand what you want you can use a script like that:
Code: Select all
on mouseup
if the hilite of btn "MyRadioBtn" then
-- do what you want
else
-- do what you want
end if
end mouseup
Jean-Marc
https://alternatic.ch
Re: query the current status of a radio Button
Hi Kia,
yes, for CHECKBOXes and RADIOBUTTONs you can check their "hilite" property for true/false.
Best
Klaus
yes, for CHECKBOXes and RADIOBUTTONs you can check their "hilite" property for true/false.
Best
Klaus