When any checkbox do

I want to create multiple checkboxes, and I want to use only one trigger using the when any CheckBox. Changed block.

can someone give me an example layout of how this would look in the MIT App Inventor blocks editor?

I'm new here thank you

do you mean this one?

I want to use the when any checkbox checked

Is this what you are after ?

What do the checkboxes represent?

Have you learned to work with lists and tables yet?

Yes! This is what i was searching.

@RyanG2 try the same method.

Also it seems you want ti save the status of each textbox (nearly 12 we can)

In the above code, after the for each item list, try this

  1. For each number from 1 to 12 by 1
    Call tinydb save value tag = join{checkbox}{get number)
    Value = false
  2. Save tinydb save value, tag = join{checkbox}(index isin list list-->global check box list), thing-->get component)

So timAi2 blocks will give you among all the check bix only one will be selected at a time (as you request) and the above suggestion will save the status of all the 12 check box status also save the clicked checkbox status everytime in tinydb. And using the same tag name you can recover it at any screen

Thank you. I will try this