How to check the status of a checkbox in code
Posted: Mon Feb 22, 2021 2:47 am
I need to determine if a checkbox is checked or not in code.
I'm stumped
Tom
I'm stumped
Tom
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
Code: Select all
on mouseUp
if the hilite of button "buttonName" then ---is if it is true/ checked
-- do something
else
-- do something else
end if
end mouseUp