ACS-1805 Introduction to Programming (with App Inventor)

Size: px
Start display at page:

Download "ACS-1805 Introduction to Programming (with App Inventor)"

Transcription

1 ACS-1805 Introduction to Programming (with App Inventor) Chapter 9 Paris Map Tour 11/1/2018 1

2 What We Will Learn In this chapter we ll build a tour guide app for a trip to Paris This chapter introduces the following App Inventor components and concepts The Activity Starter component for launching other Android apps from your app The WebViewer component for showing web pages within your app How to use list variables to store information for your app The ListPicker component to give the user the ability to choose from a list of locations How to build a URL dynamically to show different maps 11/1/2018 2

3 Designing the Components In the first version of this app The user interface for the app includes An Image component with a picture of Paris A Label component with some text A ListPicker component that comes with an associated button An ActivityStarter (non-visible) component 11/1/2018 3

4 Designing the Components 11/1/2018 4

5 ActivityStarter A relatively low-level component You ll need to set some of its properties with information shown in the table below Be careful they re case-sensitive These would be familiar to a Java Android SDK programmer 11/1/2018 5

6 ActivityStarter Set one more property DataUri in the Blocks Editor It lets you provide a URL to launch a specific map in Google Maps Other components Download the file metro.jpg to load into your project set it as the Picture property of Image1. The ListPicker component comes with a button to list the choices after the user clicks it Set the text of that button by changing the Text property of ListPicker1 to Choose Paris Destination 11/1/2018 6

7 Adding Behaviors to the Components In the Blocks Editor you ll need to define a list of destinations two behaviors The app loads the destinations into the ListPicker component when the app begins so that the user can choose one When the user chooses a destination from the ListPicker The Maps application is launched and shows a map of that destination In this first version of the app it just opens Maps and instruct it to run a search for the chosen destination 11/1/2018 7

8 Creating a List of Destinations Create a variable with the list of Paris destinations By using the blocks listed below 11/1/2018 8

9 Creating a List of Destinations Finish the list component The make a list block will have only two available sockets initially You can add another one by clicking the dark blue icon it and adding a third item Create the text blocks for each destination and place them in the sockets 11/1/2018 9

10 Letting the User Choose a Destination The list just defined does not appear in the user interface Why? So we need to use a ListPicker component to display the list of items for the user to choose from Preload the choices into the ListPicker by setting the property "Elements" to a list In this case set the Elements property for ListPicker to the destinations list just created Define this behavior in the Screen1.Initialize event because this only needs to be set once 11/1/

11 Letting the User Choose a Destination 11/1/

12 Opening Maps with a Search URL Next task after the user chooses one of the destinations Let the ActivityStarter launch Google Maps and searches for the selected location What is the URL for such a search? The? indicates that a parameter is coming A parameter is the information the website needs to process the request Here the parameter name is q Short for query Its value is Paris -- instructs Google Maps what map to search 12

13 Opening Maps with a Search URL Build a URL dynamically Create the parameter value based on which location the user chooses By this way it can show different maps based on the user s choices Great flexibility When the user chooses an item from the ListPicker component the List Picker.AfterPicking event is triggered In the event handler for AfterPicking set the DataUri of the ActivityStarter component so that it knows which map to open then launch Google Maps by using ActivityStarter.StartActivity 13

14 Opening Maps with a Search URL 14

15 Opening Maps with a Search URL The DataUri property is set to a text object composed by combining together the chosen item stored in ListPicker.Selection We are done with the first version Remember You can do more with ActivityStarter It provides access to any other app on the device 15

16 The Second Version of the App Spice up the app It opens some zoomed-in and street views of the Paris monuments. Define a second list and use a more complicated scheme to decide which map to show First explore Google Maps to obtain the URLs of some specific maps Still use the same Parisian landmarks for the destinations But when the user chooses one location use the index (the position in the list) of his/her choice to select and open a specific zoomed-in or street-view map 16

17 Implementing the Second Version Save the first version as another project Add the web viewer component Delete the ActivityStarter component in the Designer Drag in a WebViewer component from the User Interface drawer Place it below the other components Uncheck the Screen1.Scrollable property so the WebViewer will display web pages correctly 17

18 Finding the URL for Specific Maps Do your own research to find the specific maps you want to launch for each destination On your computer, browse to Search for a landmark (e.g., the Eiffel Tower) Zoom in to the level you desire Choose the type of view you want (e.g., Street View) Grab the URL In the classic version of Maps click the Link button near the top right of the Maps window and copy the URL for the map In the newer version of Google Maps you can just grab the URL from the address bar You may want to use the shortened the URLs (with the bit.ly service or similar service provided by Google itself) 18

19 Finding the URL for Specific Maps 19

20 Defining the URLs List Create a list named URLs It contains a URL for each of the destinations Make sure the items correspond to the items in the destinationslist 20

21 Modifying the ListPicker.AfterPicking Behavior The AfterPicking behavior is now more sophisticated Because the user is choosing from one list (destinations) while the app is choosing from the URLs list for the URL When the user chooses an item from the ListPicker the app needs to know the index of the choice so it can use the index to select the correct URL from the list 21

22 New/Modified Blocks 22

23 New Mechanism How the blocks work When the user chooses an item from the ListPicker the AfterPicking event is triggered, The chosen item (say, Tour Eiffel ) is in ListPicker.Selection You used this property in the first version of this app 23

24 New Mechanism ListPicker also has a property SelectionIndex It corresponds to the position of the chosen destination in the list If Tour Eiffel is chosen the SelectionIndex will be 1 If Musée du Louvre is chosen the index will be 2 If Cathédrale Notre Dame de Paris is chosen the index will be 3 24

25 The Complete App 25

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: 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 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

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

The first is Anything on this website is free for you to use.

The first is  Anything on this website is free for you to use. Putting your Android App on the Google Play Store First, an important disclaimer You are free to use images from the Internet for your apps, provided that the author of the image has given permission for

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

Table of contents. Sliding Menu Manual DMXzone.com

Table of contents. Sliding Menu Manual DMXzone.com Table of contents About Sliding Menu... 2 Features in Detail... 3 Before you begin... 19 Installing the extension... 19 Reference: iphone and Android Intents... 20 Reference: Sliding Menu Designs... 22

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

Bluetooth Communications App Using App Inventor

Bluetooth Communications App Using App Inventor ABSTRACT 2016 IJSRST Volume 2 Issue 6 Print ISSN: 2395-6011 Online ISSN: 2395-602X Themed Section: Science and Technology Bluetooth Communications App Using App Inventor N. Anju Latha, B. Rama Murthy Department

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

ELCHK Lutheran Secondary School. Form Three Computer Literacy. Exploring. MIT App Inventor 2. Name : Class : ( )

ELCHK Lutheran Secondary School. Form Three Computer Literacy. Exploring. MIT App Inventor 2. Name : Class : ( ) ELCHK Lutheran Secondary School Form Three Computer Literacy Exploring MIT App Inventor 2 Name : Class : ( ) 0 Content Chapter 1 Introduction of MIT App Inventor 2 1 Chapter 2 An app to find the area of

More information

Assignment 4: Object creation

Assignment 4: Object creation Assignment 4: Object creation ETH Zurich Hand-out: 12 October 2007 Due: 19 October 2007 Copyright FarWorks, Inc. Gary Larson Goals Create objects in Traffic. Write a first stand-alone program. Create and

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

How to Save Google Maps Offline to a Mobile Phone

How to Save Google Maps Offline to a Mobile Phone How to Save Google Maps Offline to a Mobile Phone How to Download Google Maps Offline 1. Make sure your device (laptop) has an Internet connection, and sign into your Google account. 2. Open the Google

More information

How To Access Everything Quicker With Alfred [Mac]

How To Access Everything Quicker With Alfred [Mac] How To Access Everything Quicker With Alfred [Mac] In the previous article we talked a little bit about Alfred, a free alternative application launcher for Mac. While it s not yet up to par to its seniors

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

How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course

How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course How to View Autodesk Inventor Publisher Assembly Instructions in a Curriculum Course Introduction This document provides procedures to transfer Autodesk Inventor Publisher files to a mobile device for

More information

Evernote Guide. Evernote for ipad: Installing the App and Creating Your Account! 2. An Introduction to Notebooks in Evernote for ipad!

Evernote Guide. Evernote for ipad: Installing the App and Creating Your Account! 2. An Introduction to Notebooks in Evernote for ipad! Evernote Guide Table of Contents Evernote for ipad: Installing the App and Creating Your Account! 2 An Introduction to Notebooks in Evernote for ipad! 2 An Introduction to Notes and the Note Editor in

More information

Note-Taking Guide. Numbered t. Colored t. Insert i. Insert t. Insert a l. L s. Paint f. Course: Google s Document App Episode: Word Processing Basics

Note-Taking Guide. Numbered t. Colored t. Insert i. Insert t. Insert a l. L s. Paint f. Course: Google s Document App Episode: Word Processing Basics Course: Googles Document App Episode: Word Processing Basics Note-Taking Guide Make sure you are logged into Google Drive. Click on the red box with the word Create in the upper-left corner and select

More information

Step 6 How to download a YouTube Video that is not on your account. You have to have another program on your computer to that called ClipGrab.

Step 6 How to download a YouTube Video that is not on your account. You have to have another program on your computer to that called ClipGrab. Step 6 How to download a YouTube Video that is not on your account. You have to have another program on your computer to that called ClipGrab. Next is how to go to ClipGrab website and download it with

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

THREE. Multiple windows

THREE. Multiple windows THREE Multiple windows Often in a Windows application it is convenient to have more than one window in use. This provides a natural way of breaking down a large and complex project into a number of simpler

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

You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture slides.

You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture slides. In this tutorial, you ll use Biolucida to: Create a virtual lecture Share the lecture with students You will follow these steps: A. Verify that a student account exists. B. Create a classroom to hold lecture

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

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

Installing and Running the Google App Engine On a Macintosh System

Installing and Running the Google App Engine On a Macintosh System Installing and Running the Google App Engine On a Macintosh System This document describes the installation of the Google App Engine Software Development Kit (SDK) on a Macintosh and running a simple hello

More information

Calendar: Scheduling, invitations, attachments, and printing

Calendar: Scheduling, invitations, attachments, and printing Does your Calendar look different than what s shown here? To fix this, switch to the new look! Calendar: Scheduling, invitations, attachments, and printing Your calendar view Sign in to Google Calendar.

More information

Android Mobile Client. User Guide

Android Mobile Client. User Guide Android Mobile Client. User Guide 1. General information about the Android mobile client..................... 3 2. Connecting to the Axxon Next server and working with servers in the Android client. 3

More information

Creating a Data Collection Form with EpiCollect5

Creating a Data Collection Form with EpiCollect5 Reference Guide for Creating Field Surveys Epicollect5 is a free web-based tool that enables you to collect customized data (including location and media) in the field using a mobile device. You can easily

More information

App Inventor 2 Create Your Own Android Apps

App Inventor 2 Create Your Own Android Apps App Inventor 2 Create Your Own Android Apps David Wolber, HalAbelson, Ellen Spertus, and Liz Looney Beijing Cambridge Farnham Koln Sebastopol Tokyo O'REILLY Table of Contents Foreword xi Preface xiii Parti.

More information

Dynamic Database Browsing

Dynamic Database Browsing Dynamic Database Browsing Tutorial #8 Last Revision: February 2007 Introduction This tutorial was designed to introduce users to the new Dynamic Database Browsing (DDB) option for use with PerCon online

More information

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image

From the Insert Tab (1), highlight Picture (2) drop down and finally choose From Computer to insert a new image Inserting Image To make your page more striking visually you can add images. There are three ways of loading images, one from your computer as you edit the page or you can preload them in an image library

More information

Gmail: , find, and manage your contacts

Gmail:  , find, and manage your contacts Gmail: Email, find, and manage your contacts With Google Apps, you can easily organize, find, contact, and track information about all the people and groups you correspond with both personal contacts and

More information

Nextiva Drive The Setup Process Mobility & Storage Option

Nextiva Drive The Setup Process Mobility & Storage Option Nextiva Drive The Setup Process The Setup Process Adding Users 1. Login to your account and click on the Account icon at the top of the page (this is only visible to the administrator). 2. Click Create

More information

Getting Started Guide. Version January 4, 2015

Getting Started Guide. Version January 4, 2015 Getting Started Guide Version 2.9.1 January 4, 2015 2. Entering the Scheduled Meeting Room and Joining the Conference Participants enter the room: Note: If Moderator publishes the meeting (via Advanced

More information

Anatomy of a Window (Windows 7, Office 2010)

Anatomy of a Window (Windows 7, Office 2010) Anatomy of a Window (Windows 7, Office 2010) Each window is made up of bars, ribbons, and buttons. They can be confusing because many of them are not marked clearly and rely only on a small symbol to indicate

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

Step 1: Upload a video (skip to Step 2 if you ve already uploaded a video directly from your ipod, Uploading to YouTube and Posting in Blackboard

Step 1: Upload a video (skip to Step 2 if you ve already uploaded a video directly from your ipod, Uploading to YouTube and Posting in Blackboard Uploading to YouTube and Posting in Blackboard This document will explain 1. How to upload videos from your computer to YouTube 2. How to obtain the URL (web link) or embed code for your video 3. How to

More information

etrac ATOM Android App Setup Guide

etrac ATOM Android App Setup Guide etrac ATOM Android App Setup Guide Version: 1.0.0 Published: 10/22/2014 Global DMS, 1555 Bustard Road, Suite 300, Lansdale, PA 19446 2014, All Rights Reserved. Table of Contents Initial Setup... 3 Settings...

More information

CCH Client Axcess User Guide

CCH Client Axcess User Guide CCH Client Axcess User Guide Green Hasson Janks Tips Best practice tips and shortcuts Icon Legend Notes Warning Informational notes about functions Important warnings about a function CCH Client Axcess

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

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

GETTING STARTED GUIDE

GETTING STARTED GUIDE Set Up Gmail GETTING STARTED GUIDE Customize Your Phone View a DivX Video Download an App Use Swype Text Entry Take and Send a Picture Bluetooth Pairing lgusa.com/optimusc 11 Getting to Know Your Phone

More information

Web Component JSON Response using AppInventor

Web Component JSON Response using AppInventor Web Component JSON Response using AppInventor App Inventor has a component called Web which gives you the functionality to send and fetch data from a server or a website through GET and POST requests.

More information

Learn to Code. App Inventor Overview

Learn to Code. App Inventor Overview 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

More information

CourseWorks Quick Start

CourseWorks Quick Start Introduction CourseWorks Quick Start CourseWorks (aka Sakai ) is the university's new course management system, which allows instructors to develop and maintain course Web sites. With CourseWorks, instructors

More information

Table of Contents. Chapter 1 Creating a New Project 5. Chapter 2 Split Screen (Picture in Picture) 14. Chapter 3 Text & Text Effects 17

Table of Contents. Chapter 1 Creating a New Project 5. Chapter 2 Split Screen (Picture in Picture) 14. Chapter 3 Text & Text Effects 17 Table of Contents Page # Your Editor Cockpit View 4 Chapter 1 Creating a New Project 5 Chapter 2 Split Screen (Picture in Picture) 14 Chapter 3 Text & Text Effects 17 Chapter 4 Adding and Adjusting Audio

More information

APP MANUAL. Car Assistant APP MANUAL

APP MANUAL. Car Assistant APP MANUAL APP MANUAL Car Assistant APP MANUAL 1 Introduction REQUIREMENTS The Car Assistant app works on a mobile device (a smartphone or a tablet) with an Android 4.0 or newer system. Apple mobile device works

More information

Google Maps maps.google.com

Google Maps maps.google.com Google Maps maps.google.com Search and print directions example hotels near Meijer Gardens Type meijer gardens grand rapids mi and click search button The box to the left gives helpful information such

More information

gsfgdsgsf GPS Navigation User Guide

gsfgdsgsf GPS Navigation User Guide gsfgdsgsf TM GPS Navigation User Guide CONTENTS NAVIGATION Selecting on or off road modes... 3 STREET NAVIGATION Getting started with street navigation... 4 Navigating to an address... 4 Using the on screen

More information

Quick Reference Guide SharePoint Quick Reference Guide

Quick Reference Guide SharePoint Quick Reference Guide Quick Reference Guide 1 P age Table of Contents What is SharePoint?... 3 1. Home Page Layout... 4 2. Uploading Documents to a Library... 6 3. To Open a Document... 7 4. To Delete a Document... 7 5. Adding

More information

TRANSFLO Mobile+ Users Guide for Drivers

TRANSFLO Mobile+ Users Guide for Drivers TRANSFLO Mobile+ Users Guide for Drivers Table of Contents Download & Registration Page 1 Quick Tips for Optimal Images Page 2 Add a Recipient Page 2 Indexing & Document Typing Images Page 3 Reviewing

More information

How to Search Using Google

How to Search Using Google A. Accessing Google for the first time: How to Search Using Google 1. From the desktop choose a web browser and double click on the appropriate icon to access the internet: Mozilla Firefox, Google Chrome

More information

Jerry Cain Handout #5 CS 106AJ September 30, Using JSKarel

Jerry Cain Handout #5 CS 106AJ September 30, Using JSKarel Jerry Cain Handout #5 CS 106AJ September 30, 2017 Using JSKarel This handout describes how to download and run the JavaScript version of Karel that we ll be using for our first assignment. 1. Getting started

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

Luma Surveillance Mobile App. Owner s Guide. Version

Luma Surveillance Mobile App. Owner s Guide. Version Luma Surveillance Mobile App Owner s Guide Version 180503-1035 Getting Started The Luma Surveillance app allows you to view live and recorded video from your system. With internet access, you can review

More information

Destiny Discover. Getting Started with ebooks in Destiny Discover. Log in. With Destiny Discover, it is easy to find, check out and read ebooks.

Destiny Discover. Getting Started with ebooks in Destiny Discover. Log in. With Destiny Discover, it is easy to find, check out and read ebooks. Destiny Discover Getting Started with ebooks in Destiny Discover With Destiny Discover, it is easy to find, check out and read ebooks. Log in Accessing Destiny Discover The way you access Destiny Discover

More information

STEP 1: Download Unity

STEP 1: Download Unity STEP 1: Download Unity In order to download the Unity Editor, you need to create an account. There are three levels of Unity membership. For hobbyists, artists, and educators, The free version is satisfactory.

More information

Publish Content & Measure Success 1

Publish Content & Measure Success 1 Publish Content & Measure Success 1 Publish Content & Measure Success Meltwater Engage gives businesses scalability and control over content publishing across all of their social channels. The built- in

More information

Salesforce Classic User Guide for Android

Salesforce Classic User Guide for Android Salesforce Classic User Guide for Android Version 36.0, Spring 16 @salesforcedocs Last updated: April 27, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Lab Android Development Environment

Lab Android Development Environment Lab Android Development Environment Setting up the ADT, Creating, Running and Debugging Your First Application Objectives: Familiarize yourself with the Android Development Environment Important Note:

More information

Create Turtles with Python

Create Turtles with Python Create Turtles with Python BY PATRICIA FOSTER / PROGRAMMING / OCTOBER 2017 ISSUE Create turtles with Python, the programming language. Turtles make great pets. They re small, slow, and clean. Plus, who

More information

Released June 2012 For Assessment Submission January 2013 to June 2015

Released June 2012 For Assessment Submission January 2013 to June 2015 Released June 2012 For Assessment Submission January 2013 to June 2015 GCSE COMPUTING A452 Practical Investigation *A426280613* CONTROLLED ASSESSMENT MATERIAL 5 This assessment may be periodically reviewed.

More information

v9 Quick Start Guide

v9 Quick Start Guide v9 Quick Start Guide overview Driving Screen Most of your time using CoPIlot Truck will be spent on this screen. Let s take a moment and get familiar with the items you can interact with. Zoom Out Zoom

More information

Contents. Xweb User Manual

Contents. Xweb User Manual USER MANUAL Contents 1. Website/Pages/Sections/Items/Elements...2 2. Click & Edit, Mix & Match (Drag & Drop)...3 3. Adding a Section...4 4. Managing Sections...5 5. Adding a Page...8 6. Managing Pages

More information

Chapter 2: Android Device Basics

Chapter 2: Android Device Basics Chapter 2: Android Device Basics 1 Chapter 2: Android Device Basics Android devices have a ton of cool features and are really fun to play with, but they have a very practical side as well. We ll touch

More information

127 Church Street, New Haven, CT O: (203) E: GlobalSearch ECM User Guide

127 Church Street, New Haven, CT O: (203) E:   GlobalSearch ECM User Guide 127 Church Street, New Haven, CT 06510 O: (203) 789-0889 E: sales@square-9.com www.square-9.com GlobalSearch Table of Contents GlobalSearch ECM... 3 GlobalSearch Security... 3 GlobalSearch Licensing Model...

More information

Getting Started with Zoom

Getting Started with Zoom Getting Started with Zoom The Institute of Agriculture has recently purchased a site license for a new cloud-based video conferencing service known as Zoom. If you have ever connected to a GoToMeeting,

More information

MindBoard (Classic) User Guide. Tomoaki Oshima

MindBoard (Classic) User Guide. Tomoaki Oshima MindBoard (Classic) User Guide Tomoaki Oshima Table of Contents Introduction............................................................................... 1 1. Key Features...........................................................................

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

KWizCom Corporation. List Aggregator App. User Guide

KWizCom Corporation. List Aggregator App. User Guide KWizCom Corporation List Aggregator App User Guide Copyright 2005-2017 KWizCom Corporation. All rights reserved. Company Headquarters KWizCom 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada

More information

Blackboard Portfolio Quick Reference Guide for Students

Blackboard Portfolio Quick Reference Guide for Students Blackboard Portfolio Quick Reference Guide for Students How to Create a Portfolio 1. On the My Institution tab, under Tools, click on the Portfolio link. 2. From the My Portfolios page, click the Create

More information

HOW TO CREATE AN AURA IN THE AURASMA STUDIO

HOW TO CREATE AN AURA IN THE AURASMA STUDIO HOW TO CREATE AN AURA IN THE AURASMA STUDIO STARTER ACCOUNT OCTOBER 2016 INTRODUCTION Since launching in 2011, Aurasma has quickly risen to become the world s leading augmented reality platform with over

More information

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio

Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Getting Started with Android Development Zebra Android Link-OS SDK Android Studio Overview This Application Note describes the end-to-end process of designing, packaging, deploying and running an Android

More information

Salesforce Classic Mobile User Guide for Android

Salesforce Classic Mobile User Guide for Android Salesforce Classic Mobile User Guide for Android Version 41.0, Winter 18 @salesforcedocs Last updated: November 21, 2017 Copyright 2000 2017 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

QUICK START GUIDE. lgusa.com/optimusu 1. Make a Phone Call/ Send a Message Manage Contacts Customize Your Phone Adjust Sound Settings Set Up Gmail

QUICK START GUIDE. lgusa.com/optimusu 1. Make a Phone Call/ Send a Message Manage Contacts Customize Your Phone Adjust Sound Settings Set Up Gmail Make a Phone Call/ Send a Message Manage Contacts Customize Your Phone Adjust Sound Settings Set Up Gmail QUICK START GUIDE Set Up Email Download an App Manage Settings Use Google Voice Actions Bluetooth

More information

Setting Up a Zoom Classroom

Setting Up a Zoom Classroom These instructions were created for use in a classroom situation where: 1. Students are present in the room and one or more students are joining remotely 2. The classroom is equipped with a tech pack (computer

More information

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

Using Picasa Web Albums North Canton City Schools - Eric Curts

Using Picasa Web Albums North Canton City Schools - Eric Curts Using Picasa Web Albums North Canton City Schools - Eric Curts Table of Contents: What is Picasa Web Albums? How to upload an image to Picasa web Albums How to manage an image you have added How to edit

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

Showcase Workshop QuickStart Viewer Guide

Showcase Workshop QuickStart Viewer Guide Showcase Workshop QuickStart Viewer Guide 1 The Absolute Basics: How to get up & running on your device 1. Download Showcase from your device app store. 2. Enter your email address and password 3. Download

More information

Interactive Catalog TOOL GUIDE. DC-CH/MKT 08/11/2018 Bosch Rexroth Oil Control S.p.A All rights reserved.

Interactive Catalog TOOL GUIDE. DC-CH/MKT 08/11/2018 Bosch Rexroth Oil Control S.p.A All rights reserved. Interactive Catalog TOOL GUIDE 1 Interactive Catalog User Guide - Index: The Home Page 1 - Navigation Menu. 1.1 - Content Area. 1.2 Available Modes 2 - Search Mode. 2.1 - Product Filter Mode. 2.2 - Document

More information

Creating a Custom TinyWebDB service

Creating a Custom TinyWebDB service Creating a Custom TinyWebDB service 1. TinyWebDB is an App Inventor component that allows you to store data persistently in a database on the web. Because the data is stored on the web instead of a particular

More information

touchdevelop tutorial

touchdevelop tutorial touchdevelop tutorial This document was written for touchdevelop v2.8 - more information at. This document is a step-by-step walkthrough of the in-app touchdevelop tutorial. This tutorial assumes little

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

Vuforia quick install guide. Android devices and Unity 3D models edition

Vuforia quick install guide. Android devices and Unity 3D models edition Vuforia quick install guide Android devices and Unity 3D models edition Welcome to the new age of product design and customer experience!! Using augmented reality you can create a whole new experience.

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

Tizen-based Samsung TV Web Simulator Guide

Tizen-based Samsung TV Web Simulator Guide Tizen-based Samsung TV Web Simulator Guide This document provides the user guide for the Tizen TV web simulator which simulates the run time environment of Tizen TV web apps. Contents Prerequisites Interfaces

More information

Key Features. Let s Get Started!

Key Features. Let s Get Started! WELCOME TO plans Key Features swipe to next page Let s Get Started! There are many great things you ll discover as you begin using BluVue, like faster collaborative decisions in the field, saving money

More information

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device

Installing. Download the O365 suite including OneDrive for Business: 1. Open the Google Play Store on your Android device Mobile Microsoft OneDrive for Business is a part of Office 365 (O365) and is your private professional document library, it uses O365 to store your work files in the cloud and is designed to make working

More information

QUICK GUIDE FOR STARTING A NEW PREMIERE ELEMENTS PROJECT

QUICK GUIDE FOR STARTING A NEW PREMIERE ELEMENTS PROJECT QUICK GUIDE FOR STARTING A NEW PREMIERE ELEMENTS PROJECT 1. Create a folder on the DATA DRIVE (or your external HD) for your project. You can do this by either holding CONTROL while clicking in the open

More information

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise

Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Lab 3: Using Worklight Server and Environment Optimization Lab Exercise Table of Contents Lab 3 Using the Worklight Server and Environment Optimizations... 3-4 3.1 Building and Testing on the Android Platform...3-4

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

How to Access the Username and Password for your Student(s)

How to Access the Username and Password for your Student(s) How to Access the Username and Password for your Student(s) Your student can access her/his ClassLink login information three ways Your student will receive ClassLink login information from his/her classroom

More information

Contributing Lists in Activity Center

Contributing Lists in Activity Center Contributing Lists in Activity Center Overview This tour details the use of Lists in Activity Center, including: 1. Selecting Contributing Lists for Student Input 2. Configuration Options for Contributing

More information

Access your page by hovering over your campus and then choosing Staff Directory. Click on your name to enter your page.

Access your page by hovering over your campus and then choosing Staff Directory. Click on your name to enter your page. LOGIN TO THE WEBSITE Go to www.earlyisd.net and find the Login icon near the top of the page. NOTE: You can find the Login icon on any page of the EISD website. Enter your username (school email address)

More information

Ript User Guide (v )

Ript User Guide (v ) Ript User Guide (v.0.5.1218) 1 2 Contents 1. Meet Ript... 3 What you can Rip... 3 Definitions... 3 2. Getting Started... 4 3. Ripping Things... 8 Ripping an Image... 8 Ripping Multiple Images... 9 Ripping

More information

Multi-NVR Manager. Quick Start Configuration Usage

Multi-NVR Manager. Quick Start Configuration Usage Multi-NVR Manager Quick Start Configuration Usage 2014. All rights are reserved. No portion of this document may be reproduced without permission. All trademarks and brand names mentioned in this publication

More information

BrainStorm Quick Start Card for Microsoft OneDrive for Business

BrainStorm Quick Start Card for Microsoft OneDrive for Business BrainStorm Quick Start Card for Microsoft OneDrive for Business mso.harvard.edu Changing the Way the World Works Clear the path for your productivity goals! Using Microsoft OneDrive for Business, you have

More information