Start by creating a new project and naming it appropriately. You should see something like this:

Size: px
Start display at page:

Download "Start by creating a new project and naming it appropriately. You should see something like this:"

Transcription

1 Using AppInventor to create apps to populate Google Fusion Tables Daniel Sheehan January 29, 2013 Introduction This short tutorial is intended to guide you through your first AppInventor project, a tool for adding data to a Google Fusion table. This document assumes that you have a Google account and you created a Fusion table before starting. You will also need to install the Barcode Scanner on your phone. This document also assumes that you set up your laptop using the instructions at: You will use the location sensor to get your current latitude and longitude and then add addition information that will then be loaded as a record in your Fusion table. Getting started creating a new project Start by creating a new project and naming it appropriately. You should see something like this: From here you can add tools for gathering information to load into your Fusion table. First, add a location sensor from the Sensors section of the Palette to your screen (called Screen1). Rename the sensor to GISdata. This does not appear within the screen but is visible just below the 1

2 screen. Now add a TableArrangement from the Screen Arrangement section of the Palette to your screen. Change the number of rows for the TableArrangement to 8. Now start to add basic elements from the Basic section of the Palette. You will need to a latitude label and a text field for the latitude and a longitude label and a text field for the longitude. You can rename the fields to lbllat (for label latitude) and txtlat (for the actual latitude) and similar names for longitude (lbllon and txtlon). You should change the text for the labels to Latitude and Longitude and you can set the initial latitude and longitude text fields to It should look like this: First use of the blocks editor Now add the latitude and longitude to the text fields. You will need to open the blocks editor. A Java file will be downloaded to your computer. Depending on your browser, you may need to accept the file and click on it when the download is complete. You should see an empty window like this: 2

3 You can add actions in this window. Here we will populate the latitude and longitude text fields based on the current location from the location sensor (GISdata). To do this click on My Blocks on the left side of the window then click on GPSdata. You should see several options, including When GPSdata.LocationChanged. Select this, which adds it to your block editor. You will need to then click on txtlat and select the set txtlat.text to block and drop it in the do section of the GPSdata.LocationChanged block. You should do the same for txtlon and drop it below the set txtlat.text block. Now add the GPSdata.Latitude block in the to link in the set txtlat.text block. Do the same for txtlon.txt but use GPSdata.Longitude. Now let s see how this works on the phone. First, you need to change a setting on your phone. Look for Applications and then check the box for Unknown Sources (allow installation of non-market applications). You should be sure to uncheck this when you are not working with AppInventor. For testing the latitude and longitude, you should change the Location setting so that you are using wireless networks to get a latitude and longitude. Optimally, you should use the wireless network when downloading APK files. Getting the app on your phone To get this on your phone, use the Show Barcode option under Package for Phone. Once the Barcode is visible, you should be able to scan it. When you get to the web page where it is accessible to you, you will need to login to your Google account the APK file, which is what runs on your Android phone, is downloadable only by you. You can download it to your computer where you can send it to other people. When the download is complete, check your notifications and click on the download to install it. You then can open it. You should see the latitude and longitude, as determined by wireless, wifi, or your GPS unit (which won t work well in the GIS Lab). 3

4 Adding a quit button (and other widgets) When closing the new app, you will notice that you didn t add a close button. Do that next. On the web page, add a new button (two rows below the longitude label and text. Change the name of the button to btnquit and change the text to Quit. Now go back to the blocks editor. Click on btnquit and select the when btnquit.click block and drag it on to your canvas. Now under Built-in, look for call close application in the Control section. Drag this into the when btnquit.click block. Now you will have a working quit button. Now add two new widgets to the screen on the web page a label called lbldescription and a text field called txtdescription. Place these below the longitude label and field. The Insert (into Fusion Table) command Now let s try to insert this into a Google Fusion table. From the Google Developers page: Here is the insert statement: 4

5 INSERT INTO <table_id> (<column_name> {, <column_name>}*) VALUES (<value> {, <value>}*) { {;INSERT INTO <table_id> (<column_name> {, <column_name>}*) VALUES (<value> {, <value>}*)}* ;} To complete the statement, you need to find the Encrypted ID for your table (look in the File menu for your Fusion table and select About this table. My ID looks like this: 1IT1UOfOWTiMl9z4FDEYNZEYxv86JfegHnyaLuts I have three columns called Latitude, Longitude, and Description. Remembering my text fields, my insert statement will look something like this: INSERT INTO 1IT1UOfOWTiMl9z4FDEYNZEYxv86JfegHnyaLuts (Latitude, Longitude, Description) VALUES (txtlat.text, txtlon.text, txtdescription.text) Now you have to set up your Screen on the web page to work with Fusion tables and create a button to start the Insert process. On the web page, look for Not ready for prime time on the Palette and drag FusiontablesControl onto your screen. Change the name to Fusion. You will need to get a Fusion Table API key and add this to the properties of Fusion. Follow the instructions on the pop window that appears when you press the? button next to Fusion Control in the Palette. Copy the API key to the properties window. Next, add a button from the Basic section of the Palette and rename it to btninsert and change the text to Insert. Next, go to the blocks editor and get the when btninsert.click block and add the set Fusion.Query and call Fusion.SendQuery blocks to it. It should look like this: Now you need to construct the text for the insert statement. Use the Built-In Text block call Make Text and add it to your canvas. You should use the Built-In text blocks to add text, like INSERT INTO ) and your blocks to get the values from the form you created. Notice that I enclose the latitude and longitude in quotes. They are numbers and you are trying to create a text field with the call Make Text block. Fusion tables will recognize these as numbers when the Insert is run. Be careful to put spaces around 5

6 words that occur in different text blocks. Any text fields in your values should be surrounded by single quotes. Your blocks should look like this: Checking your results You should also add a label called lblresponse in your screen that will handle the response from Fusion. The blocks would look like this: You can find the value result block under My Definitions in the My Blocks section. 6

7 The completed design Your screen should look like this: And your blocks should look like this: 7

8 The hardest part of this process is the string processing adding single quotes around text fields and including spaces between words that occur in separate text blocks. You should get the column number of any errors that occur using the Fusion.GotResult block. 8

Mobile Apps with App Inventor

Mobile Apps with App Inventor Mobile Apps with App Inventor written for 91.113 Michael Penta Table of Contents Mobile Apps... 4 Designing Apps in App Inventor... 4 Getting Started... 5 App Inventor Layout... 5 Your First App... 7 Making

More information

App Inventor Drum Machine Instructions (Project #1) (Version 2 of App Inventor) Description:

App Inventor Drum Machine Instructions (Project #1) (Version 2 of App Inventor) Description: App Inventor Drum Machine Instructions (Project #1) (Version 2 of App Inventor) Description: App Inventor is a web based tool that allows the user to create apps for Android devices. The user interface

More information

App Inventor Tutorial 11 QR Code Reader

App Inventor Tutorial 11 QR Code Reader App Inventor Tutorial 11 QR Code Reader This is an app which will demonstrate the use of the phone s built in camera as an input device for a QR Code scanner. Note this app will not work on the emulator

More information

Hello Purr. What You ll Learn

Hello Purr. What You ll Learn Chapter 1 Hello Purr 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

Or working offline with the local server: Once you have the App Inventor running type into your browser http://localhost:8888

Or working offline with the local server: Once you have the App Inventor running type into your browser http://localhost:8888 App Inventor Tutorial 10 Calculator This tutorial will help you develop a calculator using If statements and a ListPicker. You will be asked to enter 2 numbers, Number1 and Number2. When you have entered

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

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

GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual

GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual GadgetTrak Mobile Security Android & BlackBerry Installation & Operation Manual Overview GadgetTrak Mobile Security is an advanced software application designed to assist in the recovery of your mobile

More information

Adding A Student Course Survey Link For Fully Online Courses Into A Canvas Course

Adding A Student Course Survey Link For Fully Online Courses Into A Canvas Course Adding A Student Course Survey Link For Fully Online Courses Into A Canvas Course Instructors who teach fully online courses using Canvas can add a link to the online course survey for their class to their

More information

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7

Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7. Initial Setup of Microsoft Outlook with Google Apps Sync for Windows 7 Microsoft Outlook with Initial Setup of Concept This document describes the procedures for setting up the Microsoft Outlook email client to download messages from Google Mail using Internet Message Access

More information

ADVISORY & SOFTWARE FOR REAL ESTATE & FACILITY MANAGEMENT

ADVISORY & SOFTWARE FOR REAL ESTATE & FACILITY MANAGEMENT 29/07/2015 mymcs Mobile apps APP INSTALLATION GUIDE 1 Product Map 2 Installation MYMCS MOBILE APP INSTALLATION GUIDE 3 What is an app? An app is a stand-alone file which can be installed on your device.

More information

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD)

USING MYWEBSQL FIGURE 1: FIRST AUTHENTICATION LAYER (ENTER YOUR REGULAR SIMMONS USERNAME AND PASSWORD) USING MYWEBSQL MyWebSQL is a database web administration tool that will be used during LIS 458 & CS 333. This document will provide the basic steps for you to become familiar with the application. 1. To

More information

Getting Started with Android Smartphones and ThingWorx

Getting Started with Android Smartphones and ThingWorx Smartphones and ThingWorx How to send and visualize data from your Android phone using ThingWorx Revision # Date ThingWorx Revision Changes Owner 1.0 18-05-15 5.1.0.433 2.0 10.05.15 Updated based on Andy

More information

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION Library Getting a Form 1. Click on Start a Form. (Alternatively, you can click on Library in the menu bar at the top) 2. This will open

More information

Client Portal User Guide

Client Portal User Guide NetClient CS Client Portal User Guide Simple, Secure and Always-On Document Sharing ACCOUNTING AUDIT TAX TECHNOLOGY CONSULTING BUSINESS ADVISORY SERVICES Contents Introduction... 1 System requirements

More information

Mac OS X Secure Wireless Setup Guide

Mac OS X Secure Wireless Setup Guide Mac OS X Secure Wireless Setup Guide Requirements: Apple computer with built-in AirPort card capable of WPA2-Enterprise encryption Mac OS X Snow Leopard version 10.6.0 or greater or Mac OS X Lion version

More information

CareSentinel Set Up Guide for Android Devices

CareSentinel Set Up Guide for Android Devices CareSentinel Set Up Guide for Android Devices Compatible Devices: Only devices running Android 4.3 or newer support Bluetooth Smart. Any smart phone or tablet running an Android operating system older

More information

Homework 9 Android App for Weather Forecast

Homework 9 Android App for Weather Forecast 1. Objectives Homework 9 Android App for Weather Forecast Become familiar with Android Studio, Android App development and Facebook SDK for Android. Build a good-looking Android app using the Android SDK.

More information

How To Use Standard Pos On A Pc Or Macbook Powerbook 2.5.2.2 (Powerbook 2)

How To Use Standard Pos On A Pc Or Macbook Powerbook 2.5.2.2 (Powerbook 2) Integrated Point of Sales System for Mac OS X Program version: 6.3.22 110401 2012 HansaWorld Ireland Limited, Dublin, Ireland Preface Standard POS is a powerful point of sales system for small shops and

More information

I Have a Dream, a Two-Part Introductory Tutorial

I Have a Dream, a Two-Part Introductory Tutorial I Have a Dream, a Two-Part Introductory Tutorial Most people have never even dreamed of building an app; software is this mysterious world of 0s and 1s and computer nerds. The goal of this lesson is to

More information

Table of Contents. Copyright 2010-2015 Symphonic Source, Inc. All rights reserved. Salesforce is a registered trademark of salesforce.

Table of Contents. Copyright 2010-2015 Symphonic Source, Inc. All rights reserved. Salesforce is a registered trademark of salesforce. DupeCatcher is a real-time deduplication app designed specifically for Salesforce. It is a 100% APEX developed and deployed managed package, and is installed via the Salesforce AppExchange, eliminating

More information

Draw pie charts in Excel

Draw pie charts in Excel This activity shows how to draw pie charts in Excel 2007. Open a new Excel workbook. Enter some data you can use your own data if you wish. This table gives the % of European holidays sold by a travel

More information

App Inventor Beginner Tutorials

App Inventor Beginner Tutorials App Inventor Beginner Tutorials 1 Four Simple Tutorials for Getting Started with App Inventor 1.1 TalkToMe: Your first App Inventor app 4 1.2 TalkToMe Part 2: Shaking and User Input 23 1.3 BallBounce:

More information

Wireless Presentation Gateway. User Guide

Wireless Presentation Gateway. User Guide User Guide Table of Contents 1 Initial Setup Present Anything Without Wires p. 3 2 From A Laptop (Windows or Mac) First, download he client p. 4 Now connect p. 5 Additional Features p. 6 3 From An ios

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Pendragon Forms Industrial

Pendragon Forms Industrial Pendragon Forms Industrial Version 7 Installation & Reference Guide for Android Devices Contents What Is Pendragon Forms Industrial?... 2 Installing Pendragon Forms Industrial... 2 Installing Pendragon

More information

USER S MANUAL. ArboWebForest

USER S MANUAL. ArboWebForest USER S MANUAL ArboWebForest i USER'S MANUAL TABLE OF CONTENTS Page # 1.0 GENERAL INFORMATION... 1-1 1.1 System Overview... 1-1 1.2 Organization of the Manual... 1-1 2.0 SYSTEM SUMMARY... 2-1 2.1 System

More information

Mac OS X. Staff members using NEIU issued laptops and computers on Active Directory can access NEIU resources that are available on the wired network.

Mac OS X. Staff members using NEIU issued laptops and computers on Active Directory can access NEIU resources that are available on the wired network. Mac OS X The University Technology Services is privileged to offer a secure wifi network to the university community. Connecting to this network will provide you with benefits in security and improved

More information

Starting User Guide 11/29/2011

Starting User Guide 11/29/2011 Table of Content Starting User Guide... 1 Register... 2 Create a new site... 3 Using a Template... 3 From a RSS feed... 5 From Scratch... 5 Edit a site... 6 In a few words... 6 In details... 6 Components

More information

DUO SECURITY CISCO VPN USER GUIDE 1/27/2016

DUO SECURITY CISCO VPN USER GUIDE 1/27/2016 DUO SECURITY CISCO VPN USER GUIDE 1/27/2016 CONTENTS Enrolling Your Devices... 2 Install Cisco AnyConnect VPN Client... 6 Connecting to a PC with Microsoft Remote Desktop... 8 Disconnecting the AnyConnect

More information

Analytics Canvas Tutorial: Cleaning Website Referral Traffic Data. N m o d a l S o l u t i o n s I n c. A l l R i g h t s R e s e r v e d

Analytics Canvas Tutorial: Cleaning Website Referral Traffic Data. N m o d a l S o l u t i o n s I n c. A l l R i g h t s R e s e r v e d Cleaning Website Referral Traffic Data Overview Welcome to Analytics Canvas's cleaning referral traffic data tutorial. This is one of a number of detailed tutorials in which we explain how each feature

More information

Adding Receipts to your Certify Wallet

Adding Receipts to your Certify Wallet Adding Receipts to your Certify Wallet Log into Certify using your full Bowdoin College email address and your password. If you have forgotten your password click on the "Lost Password Wizard" from the

More information

Earthquakes, volcanoes and plate tectonics in ArcGIS Online

Earthquakes, volcanoes and plate tectonics in ArcGIS Online Earthquakes, volcanoes and plate tectonics in ArcGIS Online For non-commercial use only by schools and universities Copyright Esri UK GIS Esri for School UK Ltd Programme 2014 www.esriuk.com/schools Earthquakes,

More information

How to Add Social Media Icons to Your Website

How to Add Social Media Icons to Your Website How to Add Social Media Icons to Your Website Introduction For this tutorial, I am assuming that you have a self-hosted WordPress website/blog. I will be using the Twenty Eleven Theme which ships with

More information

Concession FTP User Guide May 2011 Version 1.2

Concession FTP User Guide May 2011 Version 1.2 Concession FTP User Guide May 2011 Version 1.2 Concessions FTP User guide Page 1 of 41 Contents Objective... 3 FTP User Guide Microsoft Windows XP... 5 Anatomy of the Files... 9 Working on your Files....

More information

SETTING UP YOUR SAMSUNG GALAXY TAB S 8.4

SETTING UP YOUR SAMSUNG GALAXY TAB S 8.4 SETTING UP YOUR SAMSUNG GALAXY TAB S 8.4 Before starting, your store should already be setup with an autoserve1 account with at least one user and one inspection created. If at any point you require assistance,

More information

To Install EdiView IP camera utility on Android device, follow the following instructions:

To Install EdiView IP camera utility on Android device, follow the following instructions: To Install EdiView IP camera utility on Android device, follow the following instructions: To install Ediview application, launch Market. (In your Android device s All apps menu). Click magnifier icon

More information

App Operating Instructions Manual ES File Explorer

App Operating Instructions Manual ES File Explorer App Operating Instructions Manual ES File Explorer 2013/5 ES File Explorer (for Android only) In addition to managing local / shared / FTP / and Bluetooth file folders, you can also directly manage a variety

More information

Student BYOD - Olathe Public Schools

Student BYOD - Olathe Public Schools Student BYOD - Olathe Public Schools Connecting a Personally-Owned Device to the District s Wireless Network Students may attach ONE personal electronic device to the Olathe Public Schools wireless network

More information

Connecting Software Connect Bridge - Mobile CRM Android User Manual

Connecting Software Connect Bridge - Mobile CRM Android User Manual Connect Bridge - Mobile CRM Android User Manual Summary This document describes the Android app Mobile CRM, its functionality and features available. The document is intended for end users as user manual

More information

Google Apps for Sharing Folders and Collecting Assignments

Google Apps for Sharing Folders and Collecting Assignments Google Apps for Sharing Folders and Collecting Assignments The Google Drive is cloud (online) storage space, and it is also where you create and work with Google Docs, Sheets, Slides, etc. Create a Folder

More information

Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18

Android Programming. Høgskolen i Telemark Telemark University College. Cuong Nguyen, 2013.06.18 Høgskolen i Telemark Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Cuong Nguyen, 2013.06.18 Faculty of Technology, Postboks 203, Kjølnes ring

More information

Connecting Software. CB Mobile CRM Windows Phone 8. User Manual

Connecting Software. CB Mobile CRM Windows Phone 8. User Manual CB Mobile CRM Windows Phone 8 User Manual Summary This document describes the Windows Phone 8 Mobile CRM app functionality and available features. The document is intended for end users as user manual

More information

Your Mission: Use F-Response Cloud Connector to access Google Apps for Business Drive Cloud Storage

Your Mission: Use F-Response Cloud Connector to access Google Apps for Business Drive Cloud Storage Your Mission: Use F-Response Cloud Connector to access Google Apps for Business Drive Cloud Storage Note: This guide assumes you have installed F-Response Consultant, Consultant + Covert, or Enterprise,

More information

Connecting Your Device to a Wireless Network

Connecting Your Device to a Wireless Network Connecting Your Device to a Wireless Network This manual is designed to be a tutorial for our customers seeking to connect their electronic devices to their home Internet network. This manual will include

More information

DbSchema Tutorial with Introduction in SQL Databases

DbSchema Tutorial with Introduction in SQL Databases DbSchema Tutorial with Introduction in SQL Databases Contents Connect to the Database and Create First Tables... 2 Create Foreign Keys... 7 Create Indexes... 9 Generate Random Data... 11 Relational Data

More information

Maximizer CRM 12 Winter 2012 Feature Guide

Maximizer CRM 12 Winter 2012 Feature Guide Winter Release Maximizer CRM 12 Winter 2012 Feature Guide The Winter release of Maximizer CRM 12 continues our commitment to deliver a simple to use CRM with enhanced performance and usability to help

More information

Home Internet Filter User Guide

Home Internet Filter User Guide Home Internet Filter User Guide TABLE OF CONTENTS About Home Internet Filter... 2 How Home Internet Filter help you?... 2 Setting up the Residential Gateway and accessing to SingTel Home Internet Filter

More information

A Guide for Patients of Abington Park Surgery

A Guide for Patients of Abington Park Surgery A Guide for Patients of Abington Park Surgery This guide covers the following topics: About SystmOnline Logging in to SystmOnline Changing/Resetting Your Password Logging Out of SystmOnline Managing Appointments

More information

Community Health Maps Lab Series:

Community Health Maps Lab Series: Community Health Maps Lab Series: Lab 6 Data Visualization With CartoDB Objective: Understand How To Use CartoDB To Create an Online Visualization of Your Data Document Version: 2015-09-15 (V2) This course

More information

How to Install Applications (APK Files) on Your Android Phone

How to Install Applications (APK Files) on Your Android Phone How to Install Applications (APK Files) on Your Android Phone Overview An Android application is stored in an APK file (i.e., a file named by {Application Name}.apk). You must install the APK on your Android

More information

How to Use Your New Online Client Vault

How to Use Your New Online Client Vault How to Use Your New Online Client Vault Table of Contents I. Getting Into Your Vault 3 How to Sign In 3 First Time Setup 4 II. Finding Your Way Around the Vault 5 Managing Your Vault s Contents 6 Creating

More information

WORK INSTRUCTION 3 ONLINE REGISTRATION,DATA ENTRY AND WEB REPORTS

WORK INSTRUCTION 3 ONLINE REGISTRATION,DATA ENTRY AND WEB REPORTS WORK INSTRUCTION 3 ONLINE REGISTRATION,DATA ENTRY AND WEB REPORTS This document is uncontrolled when printed. Page 1 of 22 CONTENTS 3 ONLINE REGISTRATION, DATA ENTRY and REPORTS... 3 3.1 Online Registration...

More information

Backups User Guide. for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete

Backups User Guide. for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete Backups User Guide for Webroot SecureAnywhere Essentials Webroot SecureAnywhere Complete Webroot Software, Inc. 385 Interlocken Crescent Suite 800 Broomfield, CO 80021 www.webroot.com Version 8.0.1 Webroot

More information

E-Map Application CHAPTER. The E-Map Editor

E-Map Application CHAPTER. The E-Map Editor CHAPTER 7 E-Map Application E-Map displays the monitoring area on an electronic map, by which the operator can easily locate the cameras, sensors and alarms triggered by motion or I/O devices. Topics discussed

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

Adobe Connect and Zoom are web conferencing tools with many features. Google Hangouts and Skype are primarily for voice calling or text chat.

Adobe Connect and Zoom are web conferencing tools with many features. Google Hangouts and Skype are primarily for voice calling or text chat. Group Work Options The group work options listed below can be used during IVC course sessions. Students will have to have a pair of headphones and a microphone for all of these options. Individual groups

More information

2342-4. Scientific m-learning. 4-7 June 2012. Mobile Application Development using App Inventor for Android Devices

2342-4. Scientific m-learning. 4-7 June 2012. Mobile Application Development using App Inventor for Android Devices 2342-4 Scientific m-learning 4-7 June 2012 Mobile Application Development using App Inventor for Android Devices TRIVEDI Kirankumar Rajnikant Shantilal Shah Engineering College New Sidsar Campu, PO Vartej

More information

Strategic Asset Tracking System User Guide

Strategic Asset Tracking System User Guide Strategic Asset Tracking System User Guide Contents 1 Overview 2 Web Application 2.1 Logging In 2.2 Navigation 2.3 Assets 2.3.1 Favorites 2.3.3 Purchasing 2.3.4 User Fields 2.3.5 History 2.3.6 Import Data

More information

Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC. Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents...

Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC. Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents... Point of View ProTab 3XXL IPS - Android 4.0 Tablet PC English Contents Contents... 1 General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections...

More information

This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide,

This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide, This guide is to help you get started with Live Chat Support on your Wix website. If you have any additional questions after reading this guide, please chat with us at www.socialintents.com or email us

More information

Using OwnCloud. OwnCloud is a very easy to use file storage and sharing system that you can access anywhere you have an internet connection.

Using OwnCloud. OwnCloud is a very easy to use file storage and sharing system that you can access anywhere you have an internet connection. Using OwnCloud OwnCloud is a very easy to use file storage and sharing system that you can access anywhere you have an internet connection. 1. Contact the IT Department to set up your account. 2. Once

More information

Setting Sharing Permissions for Google Docs and Google Sites

Setting Sharing Permissions for Google Docs and Google Sites Setting Sharing Permissions for Google Docs and Google Sites Created by the Student Multimedia Studio specifically for Students, Faculty and Staff at Kent State University Contents Setting Sharing Permissions

More information

BLU Vivo 4.3 User Manual

BLU Vivo 4.3 User Manual BLU Vivo 4.3 User Manual 1 Table of Contents Phone Safety Information... 3 Appearance and Key Functions... 4 Installation and Charging... 5 Phone Operation... 7 Communication... 10 Camera... 11 Gallery...

More information

Generating Open For Business Reports with the BIRT RCP Designer

Generating Open For Business Reports with the BIRT RCP Designer Generating Open For Business Reports with the BIRT RCP Designer by Leon Torres and Si Chen The Business Intelligence Reporting Tools (BIRT) is a suite of tools for generating professional looking reports

More information

Getting started 7. Designing interfaces 27

Getting started 7. Designing interfaces 27 Contents Contents 1 2 3 Getting started 7 Introducing Android 8 Installing Java 10 Installing App Inventor 12 Beginning your first app 14 Adding components 16 Adding behavior 18 Preparing devices 20 Running

More information

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide

AdRadionet to IBM Bluemix Connectivity Quickstart User Guide AdRadionet to IBM Bluemix Connectivity Quickstart User Guide Platform: EV-ADRN-WSN-1Z Evaluation Kit, AdRadionet-to-IBM-Bluemix-Connectivity January 20, 2015 Table of Contents Introduction... 3 Things

More information

Point of View SmartTV HDMI 210 dongle - Android 4.2. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View SmartTV HDMI 210 dongle - Android 4.2. General notices for use... 2 Disclaimer... 2 Box Contents... 2 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Connecting your device for the first time... 3 1.2 Connections... 4 1.3 Using the remote control

More information

Volunteers for Salesforce Installation & Configuration Guide Version 3.76

Volunteers for Salesforce Installation & Configuration Guide Version 3.76 Volunteers for Salesforce Installation & Configuration Guide Version 3.76 July 15, 2015 Djhconsulting.com 1 CONTENTS 1. Overview... 4 2. Installation Instructions... 4 2.1 Requirements Before Upgrading...

More information

How to install the TLW Android Mobile Application:

How to install the TLW Android Mobile Application: How to install the TLW Android Mobile Application: Make sure that your mobile device allows for satellite signals to locate your GPS location. These functions can be obtained by clicking on: 1. Menu 2.

More information

Favorite Book, Movie, and TV Show Survey

Favorite Book, Movie, and TV Show Survey and TV Show Survey Objectives Each student will utilize the Google Docs form application to create a simple survey to gather information about his or her classmates favorite books, movies, and TV shows.

More information

Axis 360 Administrator User Manual. May 2015

Axis 360 Administrator User Manual. May 2015 Axis 360 Administrator User Manual May 2015 Table of Contents 1 Introduction... 4 1.1 Site Access and Home Page... 4 2 Settings... 5 2.1 Library Settings... 5 2.1.1 Library Site Settings...5 2.1.2 Lending

More information

Changes and Updates in elearn Version 10.5

Changes and Updates in elearn Version 10.5 Changes and Updates in elearn Version 10.5 This information sheet outlines some of the new features included in this upgrade. General Improvements All tools now lists learners by last name (A-Z) by default

More information

Install MSU Google Drive on your Computer

Install MSU Google Drive on your Computer 416 Agriculture Hall Michigan State University 517-355-3776 http://support.anr.msu.edu support@anr.msu.edu Install MSU Google Drive on your Computer Document # - 168 Creation/Revision Date 4/2013 Revision

More information

MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM

MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM MANUAL USER GUIDE FOR EMR PRIMARY HEALTH CARE SYSTEM By Faustin GASHAYIJA Version 1.0 1 Table of contents Contents Table of contents... 2 Browser... 4 Log in openmrs website... 4 OpenMRS welcome page...

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Section 1: Ribbon Customization

Section 1: Ribbon Customization WHAT S NEW, COMMON FEATURES IN OFFICE 2010 2 Contents Section 1: Ribbon Customization... 4 Customizable Ribbon... 4 Section 2: File is back... 5 Info Tab... 5 Recent Documents Tab... 7 New Documents Tab...

More information

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation

Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication. Mobile App Activation Guide for Setting Up Your Multi-Factor Authentication Account and Using Multi-Factor Authentication Mobile App Activation Before you can activate the mobile app you must download it. You can have up to

More information

Qsync Install Qsync utility Login the NAS The address is 192.168.1.210:8080 bfsteelinc.info:8080

Qsync Install Qsync utility Login the NAS The address is 192.168.1.210:8080 bfsteelinc.info:8080 Qsync Qsync is a cloud based file synchronization service empowered by QNAP Turbo NAS. Simply add files to your local Qsync folder, and they will be available on your Turbo NAS and all its connected devices.

More information

Grid-In-Hand Mobile Grid Revised 1/27/15

Grid-In-Hand Mobile Grid Revised 1/27/15 Grid-In-Hand Mobile Grid Revised 1/27/15 Grid-In-Hand provides a mobile solution framework by coupling your mobile scanner to your ios or Android device. Use Mobile Grid for inventory, asset management,

More information

Can I transfer money to accounts I have at other Financial Institutions through Mobile Banking? No, we don t currently offer this service.

Can I transfer money to accounts I have at other Financial Institutions through Mobile Banking? No, we don t currently offer this service. Mobile Banking Questions and Answers How much does this service cost? There is currently no charge associated with the service. However, there may be charges associated with text messaging and data usage

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

REDCap project creation is not possible in the Mobile App

REDCap project creation is not possible in the Mobile App About the REDCap Mobile App REDCap software provides its online users with the ability to create and manage surveys and databases quickly and securely to facilitate data collection. The REDCap mobile app

More information

BlackBerry Universal Device Service. Demo Access. AUTHOR: System4u

BlackBerry Universal Device Service. Demo Access. AUTHOR: System4u Demo Access AUTHOR: System4u BlackBerry Universal Device Service Revisions Date Version Description Author June 26 th 2012 1.0 Roman Přikryl September 25 th 2012 1.5 Revision Roman Přikryl October 5 th

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Blackboard Help. Getting Started My Institution Tab Courses Tab Working With Modules Customizing Tab Modules Course Catalog.

Blackboard Help. Getting Started My Institution Tab Courses Tab Working With Modules Customizing Tab Modules Course Catalog. Blackboard Help Getting Started My Institution Tab Courses Tab Working With Modules Customizing Tab Modules Course Catalog 1 Getting Started The following are some things to keep in mind when using Blackboard

More information

Novell Filr. Mobile Client

Novell Filr. Mobile Client Novell Filr Mobile Client 0 Table of Contents Quick Start 3 Supported Mobile Devices 3 Supported Languages 4 File Viewing Support 4 FILES THAT CANNOT BE VIEWED IN THE FILR APP 4 FILES THAT GIVE A WARNING

More information

Point of View Mobii 925 - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2

Point of View Mobii 925 - Android 4.2 Tablet PC. General notices for use... 2 Disclaimer... 2 Box Contents... 2 Table of Contents General notices for use... 2 Disclaimer... 2 Box Contents... 2 1.0 Product basics... 3 1.1 Buttons and connections... 3 1.2 Start up and shut down... 3 2.0 Introduction to Google Android

More information

Remote Android Assistant with Global Positioning System Tracking

Remote Android Assistant with Global Positioning System Tracking IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661, p- ISSN: 2278-8727Volume 16, Issue 2, Ver. III (Mar-Apr. 2014), PP 95-99 Remote Android Assistant with Global Positioning System Tracking

More information

Country Club Bank- Intro to Mobile Banking- Android & iphone Apps

Country Club Bank- Intro to Mobile Banking- Android & iphone Apps Country Club Bank- Intro to Mobile Banking- Android & iphone Apps MOBILE APP BANKING (FOR IPHONE AND ANDROID)... 2 SIGN ON PAGE... 4 ACCOUNT SUMMARY PAGE... 4 ACCOUNT ACTIVITY PAGE... 6 SEARCH ACTIVITY

More information

OXFORD PREMIUM REGISTRATION. IMPORTANT Please ensure you have registered with Oxford Premium before using our digital resources.

OXFORD PREMIUM REGISTRATION. IMPORTANT Please ensure you have registered with Oxford Premium before using our digital resources. OXFORD PREMIUM REGISTRATION IMPORTANT Please ensure you have registered with Oxford Premium before using our digital resources. Visit www.oxfordpremium.es If you are not an existing user, please click

More information

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2

Point of View SmartTV-500 Center - Android 4.2. General notices for use...2 Disclaimer...2 Box Contents...2 Point of View SmartTV-500 Center - Android 4.2 English Table of Contents General notices for use...2 Disclaimer...2 Box Contents...2 1.0 Product basics...3 1.1 Buttons and connections... 3 1.2 Connecting

More information

Compact / Mobile version

Compact / Mobile version Compact / Mobile version webcrm is available in a compact screen version suitable for mobile phones or for use in a PC or MAC browser when only the basic functions are required Note: The Compact / Mobile

More information

Getting Started: Creating a Simple App

Getting Started: Creating a Simple App Getting Started: Creating a Simple App What You will Learn: Setting up your development environment Creating a simple app Personalizing your app Running your app on an emulator The goal of this hour is

More information

MASSASOIT COMMUNITY COLLEGE ONE MASSASOIT BLVD., BROCKTON, MA 02302-3996 900 RANDOLPH ST., CANTON, MA 02021-1371 49 UNION ST., MIDDLEBOROUGH, MA 02346

MASSASOIT COMMUNITY COLLEGE ONE MASSASOIT BLVD., BROCKTON, MA 02302-3996 900 RANDOLPH ST., CANTON, MA 02021-1371 49 UNION ST., MIDDLEBOROUGH, MA 02346 MASSASOIT COMMUNITY COLLEGE ONE MASSASOIT BLVD., BROCKTON, MA 02302-3996 900 RANDOLPH ST., CANTON, MA 02021-1371 49 UNION ST., MIDDLEBOROUGH, MA 02346 Log into computers on campus Connect to the wireless

More information

Step 1. Step 2. Open your browser and go to https://accounts.bestcare.org and you will be presented a logon screen show below.

Step 1. Step 2. Open your browser and go to https://accounts.bestcare.org and you will be presented a logon screen show below. Manage your two-factor options through the accounts.bestcare.org website. This website is available internally and externally of the organization. Like other services, if you connect while external of

More information

emarketing Manual- Creating a New Email

emarketing Manual- Creating a New Email emarketing Manual- Creating a New Email Create a new email: You can create a new email by clicking the button labeled Create New Email located at the top of the main page. Once you click this button, a

More information

Virtual Communities Operations Manual

Virtual Communities Operations Manual Virtual Communities Operations Manual The Chapter Virtual Communities (VC) have been developed to improve communication among chapter leaders and members, to facilitate networking and communication among

More information