Hi readers,
Is there a way I can disable all buttons in the current card at once, rather than disable the buttons one by one in lines of coding?
Thanks.
How to: Disable all buttons in the current card?
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: How to: Disable all buttons in the current card?
Code: Select all
repeat with Nbutton =1 to the number of buttons of this card
disable button Nbutton of this card
end repeat
Thierry
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
SUNNY-TDZ.COM doesn't belong to me since 2021.
To contact me, use the Private messages. Merci.
!
Re: How to: Disable all buttons in the current card?
Hi Thierry,
Thanks very much! It works.
Thanks very much! It works.