You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to MIT App Inventor Forum
Hi guys... i made an app where the users can rename buttons to what they like. Every time they close the app the buttons that were renamed would go back to the default name. Why is that and how to keep the button like they renamed it?
Taifun
unread,
Sep 8, 2016, 11:15:12 AM9/8/16
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
Apps created with App Inventor are initialized each time they run. This
means that if an app sets the value of a variable and the user then
quits the app, the value of that variable will not be remembered the
next time the app is run. In contrast, TinyDB is a persistent
data store for the app. The data stored in a TinyDB will be available
each time the app is run. An example might be a game that saves the high
score and retrieves it each time the game is played.
A very good way to learn App Inventor is to read the free Inventor's Manual here in the AI2 free online eBook http://www.appinventor.org/book2 ... the links are at the bottom of the Web page. The book 'teaches' users how to program with AI2 blocks.
You will not find a tutorial, which does exactly what you are looking for. But doing the tutorials (not only reading a little bit) help you to understand, how things are working. This is important and this is the first step to do.