What is inside a .aia project file?

As you may know, you can save your App Inventor project to your local computer using the Projects | Export selected project (.aia) to my computer menu option: Use this feature to save a backup copy on your local computer or to share your code with others (email or transfer the file using DropBox – … Continue reading What is inside a .aia project file?

Using TinyDB in App Inventor

(This post was completely rewritten and updated on October 30, 2015) What is TinyDB? TinyDB is a simple “database” that stores data on your phone or tablet. Unlike program variables that go away when your app is finished running or your phone is re-set, values stored in TinyDB remain on your phone for use the … Continue reading Using TinyDB in App Inventor

App Inventor Books

Help yourself to faster programming by purchasing my App Inventor 2 Guides from any of the following vendors – thank you very much! Detailed descriptions of all the books are below, including Table of Contents and some sample chapters. Where to Buy App Inventor 2 Introduction (Volume 1 e-book) Step-by-step guide to easy Android programming Buy … Continue reading App Inventor Books

Part 1: Storing and accessing user interface components as variables

App Inventor programmers routinely store values, such as numbers or text strings (“Hello!”) in variables. For example, stores the numeric value 6 in to the variable TOTALBUTTONS. To illustrate by example, here is a global variable named SpecialButton. We can initialize it to anything we want at this point. Next, inside our app, our blocks … Continue reading Part 1: Storing and accessing user interface components as variables