Learn to Code. App Inventor Overview

Size: px
Start display at page:

Download "Learn to Code. App Inventor Overview"

Transcription

1 App Inventor Overview App Inventor is an Integrated Development Environment (IDE) that you access through a web browser. An IDE provides all of the tools you need to develop in one application. App Inventor (AI) has three different sections. 1. Projects View A list of all of your projects. 2. Designer View The default view when you create a project. This is where you ll add user interface (UI) objects to your project s screens. You ll also use the Designer to add non-ui objects that your project will use, such as networking, database, clock, etc. 3. Blocks View This is where you will do all of your coding. You will access App Inventor from your web browser by going to: In order to access AI, you ll have to provide a Google Account. If you have projects associated with your account, AI will open the last project you worked on. If not, you will see the Projects View, where you can create a new project or import a project. Samsung Mobile App Academy 1

2 Learn to Code Projects View The Projects View is simply a list of all of your projects. We re going to click on the New Project button. We ll name the project TestProject and click OK. Samsung Mobile App Academy 2

3 Learn to Code Designer View This is where you ll add user interface (UI) objects to your project s screens. You ll also use the Designer to add non-ui objects that your project will use, such as networking, database, clock, etc. Our new TestProject will open in Designer View. You can see the name of the project on the left. Also, you ll notice that the Designer button is disabled since we re in the Designer View. The Designer View has five sections. We ll give a quick overview of each section now, then go into more detail later. 1. Palette Viewer Components Properties Media Samsung Mobile App Academy 3

4 Palette The Palette is your toolbox of components that may be added to your project. There are three types of components: visual components such as Buttons and Labels; components that add capabilities (but are not visible) such as Clock and Accelerometer- Sensor; the last set is comprised of coded components such as the Camera and Notifier (coded components are not initially visible, but they will add a coded UI feature to your app). Viewer The Viewer is a canvas where you will add UI and other toolbox objects. Components The Components section is simply a list of all of the objects you have added to the Viewer. Some objects may contain other objects; you can see the nesting relationship of objects in the Components section. This is also where you may rename objects. Properties Most components have configurable settings, or Properties. The Properties for whichever object is selected in the Components section will be displayed. Media The Media section allows you to upload images, audio files, video files, icons, etc. Any media you have uploaded will be listed here. Simple App We ll explain each of these sections in some more detail later on. For now, let s dive in and drag some objects from the Palette onto the Viewer. Then we ll rename them in the Components section and configure some of their settings in the Properties section. We ll create a simple app that allows a user to type their name in a TextBox, push a Button, and save the name in the TinyDB (the app s database). Samsung Mobile App Academy 4

5 Create Simple App We ll start a new project by clicking on Project, Start new project We ll name the project SimpleApp. Project names must start with a letter and can contain only letters (uppercase and lowercase), numbers, and underscores. Samsung Mobile App Academy 5

6 Adding Objects to the Project All new projects start with only one object in their Viewer, a screen named Screen1, which is also the only thing listed in the Components section. There will always be a one-to-one relationship between items in the Viewer and items in the Components section. All objects your project uses are added by first finding the object in the Palette section, then dragging the object onto the Viewer. HorizontalArrangement Label TextBox Button TinyDB Simple App is going to need a few objects: HorizontalArrangement can be found in the Layout section of the Palette. TinyDB is found in the Storage section. The rest of the objects are found in the User Interface section. Go ahead and drag all of the objects out onto the Viewer. Samsung Mobile App Academy 6

7 Here s the Viewer and Components after adding all of our objects: Notice that in the Viewer, TinyDB1 shows up at the bottom in the Non-visible components section, and that in the Components section, all of the objects we added are indented under Screen1. Let s rename the objects. Samsung Mobile App Academy 7

8 Renaming an Object Renaming an object is simple. Select the object in the Components section, then click the Rename button. We ll rename all of our objects except for TinyDB1. Rename: HorizontalArrangement1 to NameHorizontalArrangement Label1 to NameLabel TextBox1 to NameTextBox Button1 to SubmitNameButton Samsung Mobile App Academy 8

9 Changing Properties NameHorizontalArrangement should fill the width of Screen1. NameLabel should display Name: instead of Text for Label1. SubmitNameButton s text should be Submit Name, not Text for Button1. Let s fix these and a few other properties. Note that TinyDB1 does not have any properties. Screen1 Change the Title property from Screen1 to Simple App. Samsung Mobile App Academy 9

10 NameLabel NameHorizontalArrangement We ll change its Width property from Automatic to Fill parent. Change the Text property to Name:. Samsung Mobile App Academy 10

11 NameTextBox Change the Hint property from Hint for TextBox1 to Enter Your Name. Change the Width property from Automatic to Fill parent. SubmitNameButton Change FontSize to 20, Text to Submit Name, Width to Fill parent, and Height to 60 pixels. Samsung Mobile App Academy 11

12 Arrange Objects NameLabel should be on the same line as NameTextBox. On the Viewer, drag NameLabel and NameTextBox into NameHorizontalArrangement. Notice that, in the Components section, NameLabel and NameTextBox are now indented under NameHorizontalArrangement. We ll now take a look at the Blocks View. Samsung Mobile App Academy 12

13 Blocks View Blocks View is where we do all of our programming. Switch to the Blocks View by clicking the Blocks button. The Blocks View has three sections: 1. Blocks 2. Viewer 3. Media Blocks Palette This is where you ll find all of your programming blocks. Just like on the Designer View, you ll find a block and drag it out onto the Viewer. Viewer The Viewer is where you ll configure your blocks. This is where all the programming is done. Media The Media section is a duplicate of the Media section on the Designer View. Let s take a look at the Blocks section. Samsung Mobile App Academy 13

14 Blocks View Blocks Palette Here s what the Blocks section looks like. There are Built-in blocks, blocks associated with Screens and their objects, and blocks associated with Any component. We won t go into any more detail about the Any component section in this overview. Notice that all of the objects we added in Designer View appear under Screen1. This section of the Blocks palette will always match the Components section of the Designer View. Samsung Mobile App Academy 14

15 Blocks Drawer If you click on any item in Blocks, a drawer of available blocks will appear. Here s the NameLabel s drawer of available blocks. To use a block in our code, we simply drag it from the drawer to the Viewer. Drag out the first two blocks: NameLabel.BackgroundColor set NameLabel.BackgroundColor to Samsung Mobile App Academy 15

16 Properties Setters and Getters Notice the first block looks like a puzzle piece that can fit into another piece. And the second block looks like a puzzle piece that can receive another piece. The first block gets a property s value (in this case the BackgroundColor property) and passes it along to whichever block it is connected. The second block sets a property s value to the value it receives from whatever block is connected to it. This will make more sense with some examples. Setter Let s set NameLabel s BackgroundColor property to black. All we do is drag out a BlackColor Block and attach it to the set NameLabel.BackgroundColor to Block. Getter Let s get the current value of NameLabel s BackgroundColor property and store it in a variable. Samsung Mobile App Academy 16

17 Compare Blocks to Object s Properties Sticking with our Label example, let s take a look at the properties we can configure in code and the properties we can configure in the Designer View. Notice that most of the properties we can configure in the Designer, we can also set or get in code. BackgroundColor, FontSize, Height, Text, TextColor, Visible, and Width are accessible both in Blocks and in the Designer Properties section. Whereas FontBold, FontItalic, FontTypeface, and TextAlignment may be set only in the Designer Properties section. Each object is different so be sure to check out their Properties both in Designer and in Blocks. Samsung Mobile App Academy 17

18 Object s Control and Procedure Blocks We already saw Setter and Getter blocks associated with objects. Now we ll look at two other types of blocks that may be connected to objects. Let s look at the blocks drawer for NameTextBox. Control Blocks.GotFocus and.lostfocus are Control Blocks. When the user clicks into the NameTextBox, whatever code is in the.gotfocus block will be executed. When the user leaves the Name- TextBox, whatever code is in the.lostfocus block will be executed. Procedures.HideKeyboard is a procedure that can be called. Procedures associated with objects are pieces of code that are included with the App Inventor system. In this example, the.hide- Keyboard procedure is system code that will hide the onscreen keyboard. You can only call system procedures. You can t modify them in any way. Later on we ll learn about custom procedures that you can create. Samsung Mobile App Academy 18

19 Blocks Finding Help If you hover over a built-in block with your mouse pointer, you ll see a description of the block. Blocks Palette Built-in It s important to understand where to look for blocks. Under Built-in there are eight sections: Control Logic Math Text Lists Colors Variables Procedures Each Built-in section is color coded all of the blocks within the section are the same color as the square next to the section s title. Now we re going to build out our Simple App. As we add blocks to the Viewer we ll specify which section the blocks come from. Later in this Overview, we ll go into more detail about each section. Samsung Mobile App Academy 19

20 Simple App Simple App will allow a user to type his or her name into the NameTextBox and press the SubmitNameButton. It will then save the name to TinyDB1. Also, when Screen1 is initialized, it will check TinyDB1 for the user s name and load it into the NameTextBox, if found. There are two Control points in this app: 1) when Screen1 initializes (loads for the first time), and 2) when the user clicks the SubmitNameButton. Let s start with what happens when the user clicks SubmitNameButton. SubmitNameButton.Click In the Blocks palette, click on SubmitNameButton; its blocks drawer will appear. Drag out the first block when SubmitNameButton.Click do. The only thing we have to do is save whatever text is in NameTextBox to TinyDB1. Click on TinyDB1 and drag out the call TinyDB1.StoreValue tag valuetostore block. Drag this block to the do section of the SubmitNameButton.Click block. It will snap in place. The TinyDB1.StoreValue procedure requires two parameters. The first one, tag, is simply a name we ll give the data so that we can access it later using the same name. Let s call our data UserName. We ll drag out a Text constant block and type UserName. The Text constant block is the first block in the Text section under Built-in. Samsung Mobile App Academy 20

21 Now we ll attach the Text constant to our existing code by dragging it next to the tag parameter. We re almost done. All we have to do is get the Text value of the NameTextBox. In the Blocks palette, click on NameTextBox and drag out the NameTextBox.Text block. Now we ll attach the Text getter to our existing code. That s it, we re done Now when the user clicks the SubmitNameButton the text that is in the NameTextBox will be saved to the database with the tag UserName. Screen1.Initialize When the program launches, it initializes Screen1 before it is displayed for the first time. In the Blocks palette, click on Screen1, then drag out the when Screen1.Initialize do block. This is the block of code that will be executed every time Screen1 initializes. We want to add code to this block that will read the user s name from the database and put it in the NameTextBox. We ll need a NameTextBox.Text setter as well as a procedure to read data from TinyDB1. Samsung Mobile App Academy 21

22 Click on NameTextBox and find the set NameTextBox.Text to block. Drag it to the do section of the Screen1.Initialize block. Now click on TinyDB1 and find the call TinyDB1.GetValue tag valueiftagnotthere block. Drag it to the to link of the NameTextBox.Text block. All that s missing is the tag parameter. We ll use the same Text constant block we used when we saved the value to TinyDB1. Use copy and paste to create a copy of the UserName Text constant. Click on the block you want to copy, press Command+C on Macs or Control+C on Windows, then press Command +V on Macs or Control+V on Windows. Samsung Mobile App Academy 22

23 You ll see a copy of the UserName Text constant floating just under the original. Drag it to the tag link. That s it, we re done with Simple App Next, we ll see what it looks like on an Android device or the Android emulator. Samsung Mobile App Academy 23

24 Connect to Device Over WiFi To connect your Android device to App Inventor over WiFi you ll need to install the AI Companion application on your Android device. From your Android s web browser, open this URL: Once AI Companion is installed, launch it, then, on your computer, select AI Companion under the Connect menu. A popover will be displayed with a QR code and a six-letter code. On your device, you can simply select the Scan QR Code option to connect. Or you can type the six-letter code in the space provided on the device. Samsung Mobile App Academy 24

25 Resetting AI Companion Connection If AI Companion on your device stops responding to your code updates, you may have to reset the connection. On your device, close AI Companion by pushing and holding the Home button. Your recent apps will be displayed. Find AI Companion, then swipe it off the screen to close it. Now relaunch AI Companion. On your computer, under the Connect menu, choose Reset Connection. Then connect to AI Companion as per the instructions above. Samsung Mobile App Academy 25

26 Running on an Emulator If you don t have an Android device, you can still test your app on your computer using an Android emulator. Select the Emulator option under the Connect menu. A separate window will open with an Android emulator. It could take a minute for the emulator to open and start up completely. Samsung Mobile App Academy 26

27 Building Your App AI Companion and the Emulator are both great for testing your app while you re developing it. But when you re done you will want to install your app on your device and maybe even share it with your friends. To do this, you ll need to build the app. Under the Build menu you have two options: 1) App (provide QR code for.apk); and 2) App (save.apk to my computer). Provide QR Code for.apk The first option is useful for installing on your own device. It creates a QR code that you can scan with the AI Companion app or most other QR-scanning apps. The QR code links to the.apk file on the Internet for direct download to your device. Save.APK to my Computer The second option will download the.apk file to your computer. You can then it to your friends or even upload it to the Google Play store. Samsung Mobile App Academy 27

28 Designer and Blocks Now that you got your feet wet by building Simple App, let s revisit the Designer View and the Blocks View. This document is not intended to be a complete guide to all of the objects and blocks available in App Inventor. Instead, it will give you enough of an orientation so that you can get started with the app tutorials. Designer and Blocks Media The Media section appears on both the Designer and Blocks Views. It allows you to upload images, audio files, video files, icons, etc. Any media you have uploaded will be listed here. Here s a screenshot of the Media section in a project that doesn t have any media files yet. After uploading two image files, we see the files listed in the Media section. Samsung Mobile App Academy 28

29 Designer View Palette All of the objects available in the Palette are grouped into nine categories. User Interface Layout Media Drawing and Animation Sensors Social Storage Connectivity Palette Finding Help Notice the pop-up. to the right of each object. Clicking it will display a help Samsung Mobile App Academy 29

30 Designer View Exploring the Palette You don t have to memorize where every object in your toolkit is found, but being familiar with the organizational structure of the Palette is useful. In this section, we ll show you each of the Palette s groups and point out some of the most frequently used objects. The best way to become familiar with the Palette and its objects is to build apps and play with the different objects. Palette User Interface We ll be using many of the objects in the User Interface section to build our apps. We ve highlighted some of the most frequently used UI components. Palette Layout We ll place other objects within Layout objects, which will allow us to arrange objects on the screen and group objects. We ll regularly use all three Layout objects. Samsung Mobile App Academy 30

31 Palette Media Media objects control playing and recording sound and images, including text-to-speech and speech recognition. Palette Drawing and Animation Ball and ImageSprite objects must be placed on a Canvas object. Palette Sensors The sensor objects allow you to access some of the devices sensors such as the accelerometer, GPS, orientation, etc. Palette Social The objects in the Social section make interacting with other people easier. Samsung Mobile App Academy 31

32 Palette Storage Storage objects allow you to save and retrieve data stored on the device (TinyDB) or on the Internet (FusiontablesControl and TinyWebDB). Palette Connectivity Connectivity objects allow you to connect to other applications on the device, other devices using Bluetooth, and Web pages. Samsung Mobile App Academy 32

33 Blocks View Exploring the Blocks Palette Control Blocks Control blocks affect the flow of the app. They re used for: Branching doing one thing or another based on a logic test Looping doing the same block of code repeatedly Changing Screens opening another screen or closing the current screen We ve highlighted several of the blocks you ll use more frequently. Samsung Mobile App Academy 33

34 If Then Block Let s take a closer look at the if then block. You ll be using this block in every program you write. Notice the blue icon to the left of the word if. If you click on the blue icon a callout will appear that will allow you to configure the if then block. Let s add an else section by dragging the else block on the left to the if block on the right. An if then block may only have one else section but it could have any number of else if sections. Samsung Mobile App Academy 34

35 Logic Blocks All Logic blocks evaluate to a Boolean value, either true or false. The binary simplicity of true or false is the foundation of all computer programming. We ll use most of the Logic blocks frequently when we program. Notice the blocks with a drop-down arrow. You can change the functionality of these blocks. Math Blocks Here are some of the Math blocks with the most popular ones highlighted. Notice that some of them have blue icons to allow you to modify the blocks and some have drop-down arrows. Also, notice that the first block, the one with a 0 in it, can be modified by typing in any number to create a Number Constant block. Samsung Mobile App Academy 35

36 Text Blocks Here are some of the Text blocks. Notice again the blue icon on the join block and the drop-down arrows. Also, the first block the one with the quote marks is similar to the first block in the Math section. You can type any text in the block to create a Text Constant block. Notice the drop-down on the compare texts blocks. We will frequently check for text equality, but to do so you ll have to use the drop-down list to choose the equal sign. Samsung Mobile App Academy 36

37 Lists Blocks Here are some of the Lists blocks. Lists are a way of storing many objects in a single variable. For example, here s a simple list: cat dog fish You can access items in a list by their index numbers. Here s our simple list with index numbers: 1. cat 2. dog 3. fish Notice that index numbers in App Inventor start at 1. If you have some programming experience with other languages, this may be different than what you re used to. In other programming languages. Lists may be called Arrays or Vectors. Samsung Mobile App Academy 37

38 Colors Blocks There are 13 preconfigured color blocks along with a block that allows you to make any color using red, green, and blue values. There s also a block that splits a color into its RGB values. Variables Blocks Variables store a value to be accessed by other program blocks. The value stored can be almost any object, but the most common objects to store in variables are numbers, Booleans (true or false), Text strings (words, sentences or any combination of characters), Lists, and Colors. There are only two things you can do with a Variable: set a value and get a value. The very first time you use a variable you initialize it by setting a value. The blocks used to set and get Variable values are called setters and getters. There are two types of Variables: global and local. Global Variables can be accessed by any block on the current screen. Local Variables are initialized at the start of a code block; they exist only within that code block. Samsung Mobile App Academy 38

39 Global Variables Let s initialize a Global Variable called score then access it in a code block that updates a ScoreLabel. We drag out an initialize global block. The variable s name defaults to name. Let s rename it to score and set its initial value to 0. All global variables are initialized when a Screen is loaded, before the Screen s Initialize block is called. Drag out a Number Constant block from the Math section. We create a block that sets the ScoreLabel s Text to a Text string formed by joining the word Score: and some other value. The other value will be the global score variable s content. There are two ways to drag out a getter block: 1) You can drag a get block from the Variables drawer, then select global score from the drop-down list. 2) You can hover over the variable s name in its initializer. A popover will appear with the variable s setters and getters. Drag off the getter and attach it to the ScoreLabel s Text setter. Samsung Mobile App Academy 39

40 Local Variables Local Variables are convenient for holding calculated values. Let s create a code block that calculates a test grade then displays one of two messages. We ll create a Local Variable to hold the grade. Drag out a local variable block. Its name will default to name. Rename it to grade. Now we ll initialize grade; calculate the grade by dividing the number of correct responses by the total number of responses and multiplying by 100. Our make-believe test has bonus questions but we won t allow grades over 100, so the first thing we ll do is check if grade is over 100. If it is we ll set it to 100. To drag off a setter and a getter, hover over the word grade in the initializer then drag out the get grade block and the set grade block. If we try to access local grade outside of the block, we ll get an error. Samsung Mobile App Academy 40

41 Procedures Blocks Procedures allow a block of code to be executed from multiple places in your program. A Procedure may return a result value, but the type of Procedure we ll use most frequently does not return a value. Procedures may have input values passed to them. Let s create a Procedure that updates a score label with an input value. We ll first click on the blue icon to add an input. The first input, by default is called x. Let s rename the input to score. Just click on the x and you will be able to edit it. We ve added the code to set the ScoreLabel s Text to a string created by joining the Text Score: with something else. That something else will be the score input passed to the procedure. Samsung Mobile App Academy 41

42 If you hover over the score input, you ll see the setter and getter for score. We ll drag the get score block out and attach it to the join block. Now that you are familiar with the App Inventor tools, you are ready to build some actual apps Samsung Mobile App Academy 42

3. Text to Speech 4. Shake it

3. Text to Speech 4. Shake it 3. Text to Speech 4. Shake it Make your phone speak to you! When you shake your phone, you can make your phone shake too. Type a phrase in a text box. Then press a button, and use the TextToSpeech component

More information

Software Prototyping. & App Inventor

Software Prototyping. & App Inventor Software Prototyping & App Inventor Prototyping This & next several slides distilled from: http://appinventor.mit.edu/explore/teaching-app-creation.html Prototype: preliminary, interactive model of an

More information

Mobile Programming (MIT App Inventor 2)

Mobile Programming (MIT App Inventor 2) Mobile Programming (MIT App Inventor 2) http://www.plk83.edu.hk/cy/ai2 Contents 1. Understanding the working environment (Page 1) 2. First Android Program (HelloPurr) (Page 4) 3. Completing HelloPurr (Page

More information

AppyBuilder Beginner Tutorials

AppyBuilder Beginner Tutorials AppyBuilder Beginner Tutorials Four Simple Tutorials for Getting Started with AppyBuilder 1 TalkToMe: Your first AppyBuilder app 03 2 TalkToMe Part 2: Shaking and User Input 21 3 BallBounce: A simple game

More information

TalkToMe: A beginner App Inventor app

TalkToMe: A beginner App Inventor app TalkToMe: A beginner App Inventor app This step-by-step picture tutorial will guide you through making a talking app. To get started, sign up for a free Google Account: http://accounts.google.com/signup

More information

App #2 - Paint Pot. Getting Ready. Objectives: In this lesson you will learn to:

App #2 - Paint Pot. Getting Ready. Objectives: In this lesson you will learn to: App #2 - Paint Pot Paint Pot is a basic finger painting app. It simulates the process of dipping your finger in a pot of a paint and then drawing on a canvas. The app uses buttons to simulate dipping your

More information

Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem

Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem Erasmus+ Project: Yestermorrow Year 1 Maths: Pythagorean Theorem Workshop (Coding Android Mobile Apps): Collision Detection and the Pythagorean Theorem (Based on the code.org worksheet) WORKSHOP OVERVIEW

More information

Activity Digital Doodle

Activity Digital Doodle Activity 1.1.2 Digital Doodle Introduction Let's create an app! In this app, you'll be able to take a photograph with the press of a button and then draw on it. You will use MIT App Inventor to create

More information

ACS-1805 Introduction to Programming (with App Inventor)

ACS-1805 Introduction to Programming (with App Inventor) ACS-1805 Introduction to Programming (with App Inventor) Chapter 2 9/6/2018 1 HelloPurr The counterpart of the Hello World the typical very first program in the traditional programming Instead of displaying

More information

TalkToMe: Your first App Inventor app

TalkToMe: Your first App Inventor app TalkToMe: Your first App Inventor app This step-by-step picture tutorial will guide you through making a talking app. To get started, go to App Inventor on the web. Go directly to ai2.appinventor.mit.edu,

More information

App Inventor + IoT: Basic Bluetooth Connection Setup

App Inventor + IoT: Basic Bluetooth Connection Setup App Inventor + IoT: Basic Bluetooth Connection Setup 30 min Start a new project in App Inventor and name it BasicIoTSetup. First, we need to set up some buttons to find and connect to our Arduino over

More information

MoleMash for App Inventor 2. Getting Started. Introduction. Workshop, S.1

MoleMash for App Inventor 2. Getting Started. Introduction. Workshop, S.1 In the game MoleMash, a mole pops up at random positions on a playing field, and the player scores points by hitting the mole before it jumps away. This tutorial shows how to build MoleMash as an example

More information

Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License

Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License Except as otherwise noted, the content of this document is licensed under the Creative Commons Attribution 3.0 License http://creativecommons.org/licenses/by/3.0 Agenda Day 1 Introduction What is a computer

More information

PaintPot. Figure 2-1. The PaintPot app

PaintPot. Figure 2-1. The PaintPot app Chapter 2 PaintPot This tutorial introduces the Canvas component for creating simple, two-dimensional (2D) graphics. You ll build PaintPot, an app that lets the user draw on the screen in different colors,

More information

CHAPTER 1 HelloPurr. The chapter covers the following topics:

CHAPTER 1 HelloPurr. The chapter covers the following topics: CHAPTER 1 HelloPurr This chapter gets you started building apps. It presents the key elements of App Inventor, the Component Designer and the Blocks Editor, and leads you through the basic steps of creating

More information

Android Programming Family Fun Day using AppInventor

Android Programming Family Fun Day using AppInventor Android Programming Family Fun Day using AppInventor Table of Contents A step-by-step guide to making a simple app...2 Getting your app running on the emulator...9 Getting your app onto your phone or tablet...10

More information

Tutorial guideline for App Inventor

Tutorial guideline for App Inventor Tutorial guideline for App Inventor This short guideline will help you to quickly jump into the tutorial sessions of the MIT App Inventor with minimal reading in a short time period. I have extracted some

More information

PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors

PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors PaintPot Hack This is an app with a background image of a cat that the user can draw on the image with different colors Login to App Inventor Here are instructions on how to login to App Inventor and create

More information

Campus Map App Tutorial

Campus Map App Tutorial Campus Map App Tutorial Overview: We will be making an app that will mark different locations on the mit campus. The App will change the screen when the phone is shaked to display a list that represent

More information

BCSWomen Android programming (with AppInventor) Family fun day World record attempt

BCSWomen Android programming (with AppInventor) Family fun day World record attempt BCSWomen Android programming (with AppInventor) Family fun day World record attempt Overview of the day Intros Hello Android! Getting your app on your phone Getting into groups Ideas for apps Overview

More information

WYBCS Android Programming (with AppInventor) Family fun day

WYBCS Android Programming (with AppInventor) Family fun day WYBCS Android Programming (with AppInventor) Family fun day Overview of the day Intros Hello Android! Installing AppInventor Overview of AppInventor Making your first app What's special about mobile? Changing

More information

ACS-1805 Introduction to Programming

ACS-1805 Introduction to Programming ACS-1805 Introduction to Programming Chapter 03: MoleMash 2019-01-22 1 What You ll Learn The ImageSprite component for touch-sensitive movable images. The Canvas component, which acts as a surface on which

More information

App Development with MIT App Inventor

App Development with MIT App Inventor Summer School of Programming time.to.code Workshop 4 App Development with MIT App Inventor Tutorials- Magic 8-Ball [BASIC] BLOCKS 1 st August 2016 Magic 8-ball Now you will create a Magic 8-Ball app which

More information

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications

Hello App Inventor! Android programming for kids and the rest of us. Chapter 2. by Paula Beer and Carl Simmons. Copyright 2015 Manning Publications SAMPLE CHAPTER Hello App Inventor! Android programming for kids and the rest of us by Paula Beer and Carl Simmons Chapter 2 Copyright 2015 Manning Publications Brief contents 1 Getting to know App Inventor

More information

Technovation 2018 Hack Day

Technovation 2018 Hack Day Technovation 2018 Hack Day Hack Day Trainer: Ahmed Career pathway through Engineering B. Eng. in Software Engineering Lakehead University Project Management Office IBM (Automation, Legal Deliverables )

More information

Magic 8-Ball. Part One: Click a Button, Hear a Sound. DESIGN: App Inventor Designer. Magic 8-Ball Predicts the Future

Magic 8-Ball. Part One: Click a Button, Hear a Sound. DESIGN: App Inventor Designer. Magic 8-Ball Predicts the Future Magic 8-Ball Magic 8-Ball Predicts the Future This introductory module will guide you through building a Magic 8-Ball app with App Inventor. When activated, your 8-ball will deliver one of its classic

More information

CHAPTER 4 No Texting While Driving

CHAPTER 4 No Texting While Driving CHAPTER 4 No Texting While Driving This chapter walks you through the creation of No Texting While Driving, a text answering machine app that auto-responds to text messages you receive while you re driving

More information

An online version of these worksheets is available at:

An online version of these worksheets is available at: Worksheet 1 Tutorial An online version of these worksheets is available at: http://ronanjsmith.com/computingintheclassroom/worksheets.html. In this tutorial, you will discover how to create simple apps

More information

App Inventor Workshop 2

App Inventor Workshop 2 App Inventor Workshop 2 Objectives Create a registration app Use lists to store data Use a web db to save your users Use maps to show where your users are Types of Databases Types of databases: TinyDB

More information

SCRATCH MODULE 3: NUMBER CONVERSIONS

SCRATCH MODULE 3: NUMBER CONVERSIONS SCRATCH MODULE 3: NUMBER CONVERSIONS INTRODUCTION The purpose of this module is to experiment with user interactions, error checking input, and number conversion algorithms in Scratch. We will be exploring

More information

ACS-1805 Introduction to Programming (with App Inventor) Chapter 5. MoleMash 9/27/2018 1

ACS-1805 Introduction to Programming (with App Inventor) Chapter 5. MoleMash 9/27/2018 1 ACS-1805 Introduction to Programming (with App Inventor) Chapter 5 MoleMash 9/27/2018 1 What We Will Learn What we will learn in this chapter: The ImageSprite component for touch-sensitive movable images.

More information

Centricity 2.0 Section Editor Help Card

Centricity 2.0 Section Editor Help Card Centricity 2.0 Section Editor Help Card Accessing Section Workspace In order to edit your section, you must first be assigned Section Editor privileges. This is done by the Director of your Site, Subsite,

More information

NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013

NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013 NPS Apps - Google Docs Facilitated by Liza Zandonella Newtown High School May, 2013 Creating, Uploading and Sharing Documents To open Google Docs, select Drive on the menu bar of your Google Mail browser.

More information

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms

A Quick-Reference Guide. To access reddot: https://cms.hampshire.edu/cms Using RedDot A Quick-Reference Guide To access reddot: https://cms.hampshire.edu/cms For help: email reddot@hampshire.edu or visit http://www.hampshire.edu/computing/6433.htm Where is... Page 6 Page 8

More information

1. Defining Procedures and Reusing Blocks

1. Defining Procedures and Reusing Blocks 1. Defining Procedures and Reusing Blocks 1.1 Eliminating Redundancy By creating a procedure, move a copy of the redundant blocks into it, and then call the procedure from the places containing the redundant

More information

YOUR SERVICE COMPANION APP. First Choice App V2.1 Guide (ios)

YOUR SERVICE COMPANION APP. First Choice App V2.1 Guide (ios) YOUR SERVICE COMPANION APP First Choice App V2.1 Guide (ios) START Welcome to your guide on how to use the new First Choice app for ios devices. If you use an Android device we have an app for you too!

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. App Inventor Workbook

Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl. App Inventor Workbook Inspiring Creative Fun Ysbrydoledig Creadigol Hwyl App Inventor Workbook App Inventor is a cloud-based application development tool, enabling users to develop Android applications for free! App Inventor

More information

Links of Interest. Application Development. Technovation. Main website for App Inventor:

Links of Interest. Application Development. Technovation. Main website for App Inventor: Hack Day 2016 Links of Interest Application Development Main website for App Inventor: http://appinventor.mit.edu/explore Getting started with App Inventor (Setup, coding, tutorials): http://appinventor.mit.edu/explore/get-started

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

Understanding an App s Architecture

Understanding an App s Architecture Chapter 14 Understanding an App s Architecture This chapter examines the structure of an app from a programmer s perspective. It begins with the traditional analogy that an app is like a recipe and then

More information

CONTENTS. Working With Feeds Viewing Your Feeds Working With Snippets Deleting Snippets Rev AA

CONTENTS. Working With Feeds Viewing Your Feeds Working With Snippets Deleting Snippets Rev AA CONTENTS Getting Started.............................................. 4 Setting Up Livescribe+...................................................... 4 Connecting Your Smartpen and Device........................................

More information

Picture Talk App Directions (Version 2 of App Inventor) Description:

Picture Talk App Directions (Version 2 of App Inventor) Description: Picture Talk App Directions (Version 2 of App Inventor) Description: This App combines images and the TextToSpeech object in Android and App Inventor to create an icon based speech program. Like the Dynavox

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

Exercise: Contact Us Form

Exercise: Contact Us Form TM Exercise: Contact Us Form Exercise Build a Contact Us Form The following are instructions to build a Contact Us form yourself; if you d like a pre-built Contact Us form and campaign, you can download

More information

What You're Building 2. Getting Started 3 Introduction 4 Iteration or how we will get to Finished App. 4

What You're Building 2. Getting Started 3 Introduction 4 Iteration or how we will get to Finished App. 4 Table of Contents What You're Building 2 Getting Started 3 Introduction 4 Iteration or how we will get to Finished App. 4 Iteration 1 Create still image of our Game 5 Getting Ready 5 Set up the Components

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows

CHAPTER 1 COPYRIGHTED MATERIAL. Getting to Know AutoCAD. Opening a new drawing. Getting familiar with the AutoCAD and AutoCAD LT Graphics windows CHAPTER 1 Getting to Know AutoCAD Opening a new drawing Getting familiar with the AutoCAD and AutoCAD LT Graphics windows Modifying the display Displaying and arranging toolbars COPYRIGHTED MATERIAL 2

More information

Full file at https://fratstock.eu Programming in Visual Basic 2010

Full file at https://fratstock.eu Programming in Visual Basic 2010 OBJECTIVES: Chapter 2 User Interface Design Upon completion of this chapter, your students will be able to 1. Use text boxes, masked text boxes, rich text boxes, group boxes, check boxes, radio buttons,

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Understanding the Interface

Understanding the Interface 2. Understanding the Interface Adobe Photoshop CS2 for the Web H O T 2 Understanding the Interface The Welcome Screen Interface Overview Customizing Palette Locations Saving Custom Palette Locations Customizing

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials

AGENT123. Full Q&A and Tutorials Table of Contents. Website IDX Agent Gallery Step-by-Step Tutorials AGENT123 Full Q&A and Tutorials Table of Contents Website IDX Agent Gallery Step-by-Step Tutorials WEBSITE General 1. How do I log into my website? 2. How do I change the Meta Tags on my website? 3. How

More information

Piktochart 101 Create your first infographic in 15 minutes

Piktochart 101 Create your first infographic in 15 minutes Piktochart 101 Create your first infographic in 15 minutes TABLE OF CONTENTS 01 Getting Started 5 Steps to Creating Your First Infographic in 15 Minutes 1.1 Pick a Template 1.2 Click Create and Start Adding

More information

Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3

Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3 Fortune Teller 2 What You'll Build 2 What You'll Learn 3 Iteration or how we will get to Finished App. 3 Iteration 1 Create still image of our App 4 Getting Started 4 Bus stop reached! 8 Iteration 2 Say

More information

InfoSphere goes Android Flappy Bird

InfoSphere goes Android Flappy Bird So you have decided on FlappyBird. FlappyBird is a fun game, where you have to help your bird create an App, which to dodge the storm clouds. This work sheet will help you let s you control a generates

More information

Lecture (06) Java Forms

Lecture (06) Java Forms Lecture (06) Java Forms Dr. Ahmed ElShafee 1 Dr. Ahmed ElShafee, Fundamentals of Programming I, Introduction You don t have to output everything to a terminal window in Java. In this lecture, you ll be

More information

PaintPot: (Part 1) What You're Building. Before starting

PaintPot: (Part 1) What You're Building. Before starting PaintPot: (Part 1) This tutorial introduces the Canvas component for creating simple two-dimensional graphics. You'll build an app that lets you draw on the phone screen in different colors. Historical

More information

the NXT-G programming environment

the NXT-G programming environment 2 the NXT-G programming environment This chapter takes a close look at the NXT-G programming environment and presents a few simple programs. The NXT-G programming environment is fairly complex, with lots

More information

Adobe Premiere: Getting Started

Adobe Premiere: Getting Started Prepared by Ansel Herz for the UW Department of Communication http://www.com.washington.edu/tech/irc/ Questions? Comments? Contact Kristina Bowman at kriscb@uw.edu. Adobe Premiere: Getting Started This

More information

Interactive Tourist Map

Interactive Tourist Map Adobe Edge Animate Tutorial Mouse Events Interactive Tourist Map Lesson 1 Set up your project This lesson aims to teach you how to: Import images Set up the stage Place and size images Draw shapes Make

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Create and edit word processing. Pages.

Create and edit word processing. Pages. Create and edit word processing documents with Pages. In this chapter, we begin to get work done on the ipad by using Pages to create and format documents. Creating a New Document Styling and Formatting

More information

Task Bar and Start Menu

Task Bar and Start Menu LEC. 8 College of Information Technology / Software Department.. Computer Skills I / First Class / First Semester 2017-2018 Task Bar and Start Menu The Windows 8.1 desktop Most of the elements that make

More information

ACTIVPRIMARY. Foundation Skills

ACTIVPRIMARY. Foundation Skills ACTIVPRIMARY Foundation Skills COPYRIGHT INFORMATION Activprimary Foundation Skills Issue 3 2008 Promethean Limited. All rights reserved. If this guide is distributed with Activprimary software, it may

More information

QUICK START GUIDE NTS HOSTED PBX CALL MANAGER. Welcome. Getting Oriented

QUICK START GUIDE NTS HOSTED PBX CALL MANAGER.   Welcome. Getting Oriented QUICK START GUIDE NTS HOSTED PBX Welcome Welcome to NTS Hosted PBX! This guide is intended to get you up and running with the basic features associated with the product. For more in-depth information,

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Photoshop World 2018

Photoshop World 2018 Photoshop World 2018 Unlocking the Power of Lightroom CC on the Web with Rob Sylvan Learn how to leverage the cloud-based nature of Lightroom CC to share your photos in a way that will give anyone with

More information

Designing Your Teacher Page. Medora Community School Corporation

Designing Your Teacher Page. Medora Community School Corporation Designing Your Teacher Page Medora Community School Corporation Introduction This tutorial will show you the basics of creating and running your teacher page on the Medora Community Schools website. This

More information

Training Manual and Help File

Training Manual and Help File Training Manual and Help File 30.06.2011 Update Manage Grow Welcome to your new Juniper Website Management System with CMS Introduction The Juniper Website Management System with CMS (Website Content Management

More information

ACS-1805 Introduction to Programming

ACS-1805 Introduction to Programming ACS-1805 Introduction to Programming Chapter 02: PaintPot 2019-01-15 1 PaintPot This tutorial introduces the Canvas component o for creating simple two-dimensional (2D) graphics PaintPot o an app that

More information

Customizing DAZ Studio

Customizing DAZ Studio Customizing DAZ Studio This tutorial covers from the beginning customization options such as setting tabs to the more advanced options such as setting hot keys and altering the menu layout. Introduction:

More information

How To: Panopto Tutorial for Faculty & Staff

How To: Panopto Tutorial for Faculty & Staff How To: Panopto Tutorial for Faculty & Staff Information Technology Help Desk Colorado Mesa University 8/22/2016 CMU Help Desk: 970-248-2111 or http://whd.coloradomesa.edu Page 0 Table of Contents What

More information

Student Success Guide

Student Success Guide Student Success Guide Contents Like a web page, links in this document can be clicked and they will take you to where you want to go. Using a Mouse 6 The Left Button 6 The Right Button 7 The Scroll Wheel

More information

A Guide to Blogging on Wordpress

A Guide to Blogging on Wordpress A Guide to Blogging on Wordpress Below is a written guide with pictures for using the WordPress blogging platform. If you re more of a visual person, there are videos here: http://wordpress.tv/category/howto/

More information

Record Zoom Session. Launch Zoom. Set Up Your Presentation

Record Zoom Session. Launch Zoom. Set Up Your Presentation Record Zoom Session Launch Zoom 1. Log into Inside SOU. 2. Scroll down the Online Services section and select Zoom (Web Conferencing). 3. Once Zoom opens, click on HOST A MEETING in the upper right corner.

More information

Chapter 2 Welcome App

Chapter 2 Welcome App 2.8 Internationalizing Your App 1 Chapter 2 Welcome App 2.1 Introduction a. Android Studio s layout editor enables you to build GUIs using drag-and-drop techniques. b. You can edit the GUI s XML directly.

More information

CANVAS TEACHER IOS GUIDE

CANVAS TEACHER IOS GUIDE CANVAS TEACHER IOS GUIDE This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike License Table of Contents Navigation...4 How do I download the Teacher app on my ios device?...5

More information

Getting Started with App Inventor

Getting Started with App Inventor Getting Started with App Inventor Table of Contents Chapter One: Sensors... 1 What do sensors do?... 1 Chapter Two: Introduction to App Inventor... 3 What is App Inventor?... 3 Setting up your phone...

More information

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel.

Figure 1 Forms category in the Insert panel. You set up a form by inserting it and configuring options through the Properties panel. Adobe Dreamweaver CS6 Project 3 guide How to create forms You can use forms to interact with or gather information from site visitors. With forms, visitors can provide feedback, sign a guest book, take

More information

While editing a page, a menu bar will appear at the top with the following options:

While editing a page, a menu bar will appear at the top with the following options: Page Editor ===> Page Editor How Can I Use the Page Editor? The Page Editor will be your primary way of editing your website. Page Editor Basics While editing a page, you will see that hovering your mouse

More information

Windows 10 Creators Edition Tips & Tricks. These New Hidden Features Will Save You Time and Money

Windows 10 Creators Edition Tips & Tricks. These New Hidden Features Will Save You Time and Money Windows 10 Creators Edition Tips & Tricks These New Hidden Features Will Save You Time and Money In April 2017, Microsoft released the new Windows 10 Creators Edition. Its features will save you hours

More information

Creating and Managing Your Personal Mines Website on WordPress

Creating and Managing Your Personal Mines Website on WordPress Creating and Managing Your Personal Mines Website on WordPress Table of Contents Creating your site... 2 Managing your site... 2 About WordPress... 2 Logging in... 2 Pages... 2 Editing an Existing Page...

More information

VEGA. Operation Manual T A B L E T P C. advent vega operation manaul_new.indd 1

VEGA. Operation Manual T A B L E T P C. advent vega operation manaul_new.indd 1 VEGA T A B L E T P C Operation Manual advent vega operation manaul_new.indd 1 advent vega operation manaul_new.indd 2 CONTENTS SETTING UP YOUR TABLET FOR THE FIRST TIME... 4 USING THE DEVICE S BUTTONS

More information

The PML Editor: User's Manual

The PML Editor: User's Manual The PML Editor: User's Manual Johnsson, Björn A; Weibull, Gunnar; Magnusson, Boris 2017 Document Version: Publisher's PDF, also known as Version of record Link to publication Citation for published version

More information

App Inventor 2: environment of development to make apps for android

App Inventor 2: environment of development to make apps for android 1 App Inventor 2: environment of development to make apps for android In order to make an App it is possible to use "App Inventor, the online platform that the Institute of Technology of Massachusetts

More information

Adobe Illustrator. Quick Start Guide

Adobe Illustrator. Quick Start Guide Adobe Illustrator Quick Start Guide 1 In this guide we will cover the basics of setting up an Illustrator file for use with the laser cutter in the InnovationStudio. We will also cover the creation of

More information

InDesign Basics. Adobe

InDesign Basics. Adobe Adobe InDesign Basics Craig Polanowski 1. Begin by creating a new document. Chances are pretty good that you will want to turn off the facing pages setting and create single pages instead of spreads. One

More information

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips Getting Started With Heritage Makers A Guide to the Heritage Studio 3.0 Drag and Drop Publishing System presented by Heritage Makers A new clients guide to: Activating a new Studio 3.0 Account Creating

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Adobe Flash CS5. Creating a web banner. Garvin Ling Juan Santa Cruz Bruno Venegas

Adobe Flash CS5. Creating a web banner. Garvin Ling Juan Santa Cruz Bruno Venegas Adobe Flash CS5 Creating a web banner Garvin Ling Juan Santa Cruz Bruno Venegas Introduction In this tutorial, you will be guided through a step-by-step process on how to create your very own animated

More information

New Website User Manual

New Website User Manual New Website User Manual General Notes 3 How To Login To Your Website And Access Admin Dashboard 4 Adding / Editing Sliders 5 Home Slider 5 School Slider (Same steps for ALL school pages) - Add a Slide

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

More information

WideQuick Remote WideQuick Designer

WideQuick Remote WideQuick Designer FLIR ThermoVision CM training This manual is starting off with a quick instruction on how to start the system and after that there are instructions on how to make your own software and modify the FLIR

More information

Technovation Hack Day

Technovation Hack Day Technovation Hack Day Welcome to Technovation Technovation will teach the skills you need to emerge as tech entrepreneurs and leaders. Working in teams of 3-5 you identify a problem in your community,

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Get Organized... 1 Create the Home Page... 1 Save the Home Page as a Word Document...

More information

Build a balloon pop game!

Build a balloon pop game! Build a balloon pop game! Part 2 An MIT App Inventor tutorial Feat. Tim the beaver App overview: Build a balloon pop game! Part 2 In this second version of the Balloon Pop game, we will be adding func=onality

More information

ACS-1805 Introduction to Programming (with App Inventor)

ACS-1805 Introduction to Programming (with App Inventor) ACS-1805 Introduction to Programming (with App Inventor) Chapter 8 Creating Animated Apps 10/25/2018 1 What We Will Learn The methods for creating apps with simple animations objects that move Including

More information

NVU Web Authoring System

NVU Web Authoring System NVU Web Authoring System http://www.nvu.com/index.php Table of Contents Using Nvu as Your Web Page Authoring System: Getting Started Opening a page, saving, and previewing your work...3 Formatting the

More information

Enter the site Title: Student Name s eportfolio Choose your Website Domain: Use a Subdomain of Weebly.com

Enter the site Title: Student Name s eportfolio Choose your Website Domain: Use a Subdomain of Weebly.com Weebly Tutorial Tutorial #1: Signing Up: Welcome to this tutorial. I m going to show you how to sign up for an account with Weebly so you can start building your eportfolio. Go to www.weebly.com. You can

More information