Four 4's Order of Operations Game

Hi! I would like to eliminate the note in cell (1, 1) of the table “# of 4s used” on screen 2 and would like it to appear as a message instead below the table. Is this possible? If so, how would you code it? Thanks!

Remove the line for “cellSuffix(1,1)” and place the same conditional in a note below, but you’ll have to make a few changes since the variables won’t live in the same component anymore.

New note CL:

content: when btn1.submitted "" 
         when isDefined(btn1.script.trueNum4s) "# of 4s used: ${btn1.script.num4sUsed}" 
         otherwise "# of 4s used: "
1 Like