I am unable to find the Purple block named call resetform in MIT App Inventor 2

45 Views Asked by At

I'm building a Pizza Party app in MIT app inventor 2, I need to find the purple block named call resetForm but I am unable to. I belive it is under the procedure section of blocks but I could be wrong.what I am building enter image description here

  • this is what I am making and you can see at the bottom of the InsertDataInTable procedure it calls resetForm.

I tried to make a procedure, so then when I called it, it workedwhat I tried, enter image description here

but when I tried to delete the procedure the call also went away. I am assuming that I have to put code in the procedure I created or else the code will not work. Please help me.

1

There are 1 best solutions below

1
Invalid Name On

Note: According to the tutorial, Google has stopped supporting Google Fusion Tables (used in Pizza Party).

TL;DR: Your assumption is correct.

Procedures (functions) are just little containers for code so that there is less duplicate or redundant code. Since these containers are used by referencing them, if they are empty (or deleted) then they are just as useful as if they weren't there. For more information, I suggest you read this.