Select Page

For Each Block On App Inventor

For each is pretty simple. You provide a list to loop through and there’s a local variable named “item” given to you that holds the value of an item. Note that you can change the name “item” to anything you like. Remember...

Animations & Effects In App Inventor

When you see a bird flapping in a game or an alien being exploded in pieces, how do you think it’s done? Well, usually it’s nothing but a set of images and changing of those images in a timely manner. In App Inventor, we can use a Canvas, some ImageSprite...

Advanced Sprites Of App Inventor

If you have gone through Advanced Components tutorial, you already know that now we can manipulate a component via reference. Here we will create a simple app with one canvas and 10 image sprites. Our goal is when an image sprite is tapped/touched, we will change its...

Advanced Components On App Inventor

App Inventor provides Any component drawer in Blocks editor allowing us to get/set different properties and call functions on a component block or a variable that represents a component. This means we can make a reference to a component via a variable/argument and...