CHAPTER 1 WHAT IS TOUCHDEVELOP?

Size: px
Start display at page:

Download "CHAPTER 1 WHAT IS TOUCHDEVELOP?"

Transcription

1 CHAPTER 1 In this chapter we present an overview of how TouchDevelop works within your phone and the larger ecosystem the cloud, the communities you are involved in, and the websites you normally access. We conclude with a brief introduction to the Windows Phone INSTALLING TOUCHDEVELOP QUICK START 1.3. WHY TOUCHDEVELOP? 1.4. IS TOUCHDEVELOP A PROGRAMMING LANGUAGE? 1.5. THE TOUCHDEVELOP ECOSYSTEM 1.6. AN INTRODUCTION TO THE WINDOWS PHONE 1.7. A QUICK QUIZ 1.1. TouchDevelop is a novel application development environment for anyone to script their smartphones anywhere you do not need a separate PC. TouchDevelop allows you to develop Windows Phone applications that can access your data, your media, your sensors, and allows using cloud services including storage, computing, and social networks. TouchDevelop targets students, hobbyists, power users, and developers. TouchDevelop applications are written for fun, for personalizing the phone, and for creating productivity tools. TouchDevelop brings the excitement of the first programmable personal computers to the now ubiquitous mobile devices. Scripts developed using TouchDevelop allow users to engage with personal interests and possessions, by showing and manipulating music and pictures stored on their own mobile device, the sensors of the phone, and the friends in their social networks. 1

2 VERSION 1 TouchDevelop programs are not large (typically less than 100 lines of code), and evolve over time with other users adding to shared scripts. Figure 1.1 (a) below shows a screen shot of TouchDevelop application in the Windows Phone. Figure 1.1(b) shows script listing of a simple program, and (c) depicts execution of a script within the TouchDevelop application. Figure 1.1: Screen shots of (a) TouchDevelop application for Windows Phone (b) code listing of a TouchDevelop program; (c) execution of a script. TouchDevelop can be used to develop games such as missile defense, which is a full featured game where you defend cities against incoming missiles ( Script for this sample game can be downloaded to TouchDevelop application installed on a Windows Phone, and executed or tailored. An example of TouchDevelop scripts being used for productivity is the meet now script, which finds the active online meetings for you and joins it through the Microsoft Lync application installed on your Windows Phone ( You can find numerous TouchDevelop samples on the TouchDevelop site ( This site also hosts scripts shared by other users to learn from, or to adapt INSTALLING TOUCHDEVELOP QUICK START If you are about to use TouchDevelop for the first time on your Windows phone, you will first need to install it. There are two easy ways to proceed, you can use either one. 2

3 Touch the Marketplace tile on the Windows phone, then press the search icon at the bottom of the screen, and type the text touchdevelop into the MARKETPLACE SEARCH menu page which comes us. Before you finish typing all the letters, the TouchDevelop app should appear as a choice on the screen. Touch that choice, and then touch INSTALL. Touch the BING search button at the bottom right of your phone, and type the text touchdevelop into the Bing search window, then touch the right arrow key at the bottom right of the keyboard to cause bing to perform its search. The first hit which comes back from Bing should be TouchDevelop at the URL Touch that selection. The webpage which is displayed has a download button in the top right-hand corner, which you should touch. It looks like the picture below WHY TOUCHDEVELOP? We are in the midst of a revolution in computing technology. In 2011, more touchscreen-based mobile devices like smartphones and tablets were sold than desk-tops, laptops, and netbooks combined. In fact, in many cases incredibly powerful and easy-to-use smart phones are going to be the first, and possibly, the only computing device many of us will own. In addition to touch screens, smart phones are also equipped with sensors such as camera, accelerometers, Global Positioning Systems (GPS), and light detectors, to name a few. Furthermore, we carry smart phones wherever we go, and constantly interact with these devices, making our daily lives more productive and interesting. However, professionally developed mobile apps available on most smart phones through the respective AppStore and Marketplaces restrict end-users to developer defined interactions and scenarios. While these interactions may be useful and interesting to the application developer, these may not be most interesting and useful for all users. TouchDevelop allows any phone user to create customized scripts, easily and in much less time compared to traditional app development models, allowing all end users to address their unique needs. With TouchDevelop, the user does not need to own a personal computer, nor does the user require knowledge into deep programming constructs. Since all development takes place on the smart phone, without the need for a personal computer, a user may program, anywhere and anytime. Finally, TouchDevelop scripts can be shared with other users using the TouchDevelop Script Bazaar IS TOUCHDEVELOP A PROGRAMMING LANGUAGE? TouchDevelop is a language for writing scripts using the TouchDevelop Windows Phone application. This application is also a runtime environment for executing TouchDevelop scripts. The TouchDevelop language is a typed, structured programming language built around the idea of only using a touchscreen as the input device to author code. It has built-in primitives which makes 3

4 VERSION 1 it easy to access the rich sensor data available on a mobile device. The TouchDevelop language mixes imperative, object-oriented, and functional features. The imperative parts are most visible: users can update local variables, and state of global objects. Object-orientation is dictated by auto completion requirements - properties of objects are an easily accessible and intuitive concept. However, for the sake of simplicity, the language itself does not have built-in constructs which would allow users to define new types or properties. A TouchDevelop script consists of a number of actions (procedures) and the global state (global variables). The TouchDevelop script editor is part of the TouchDevelop Windows Phone application designed for efficient entry of scripts using only the touch screen. Further details can be found in Chapter 2. TouchDevelop scripts execute within the TouchDevelop application on Windows Phone. This execution is reactive - actions are run in response to events. Events can be raised by user input (e.g., interacting with a UI element, changing the orientation of the phone, or shaking it), events from the phone (e.g., change of active song in the song player) or passage of time. TouchDevelop uses cooperative multi-threading. Actions and events are executed single-threaded 1.5. THE TOUCHDEVELOP ECOSYSTEM TouchDevelop scripts developed using the TouchDevelop Windows application can be shared with other users using TouchDevelop cloud infrastructure (TouchDevelop.com). Figure 1.2 depicts a high level architectural overview of the TouchDevelop ecosystem. Figure 1.2: TouchDevelop ecosystem, including the community of developers using the Windows Phone, website and cloud infrastructure. 4

5 TouchDevelop scripts are developed by users on their Windows Phones and executed within the TouchDevelop run time environment on the phone. These scripts can be shared with other users. The TouchDevelop cloud infrastructure allows this sharing amongst a community of TouchDevelop users. These scripts can also be searched, viewed, and installed into a user s account using the TouchDevelop website. The cloud infrastructure enables sharing, and, acts as a repository of all scripts developed and published by users. In order to publish scripts developed on the Windows Phone, you will have to sign-in and accept the current TouchDevelop Cloud Services Agreement; please also read the TouchDevelop Privacy Statement. Detailed steps are available in Chapter 2. Once your script is published to the TouchDevelop cloud infrastructure, other TouchDevelop users can view your script in the new section of the website or the app (Figure 1.3). Users can also see author s username used to publish the script from the Windows Phone. Scripts in this list are sorted by the time of publication, with most recently posted scripts on the top. Figure 1.3: Listing of TouchDevelop scripts on touchdevelop.com in three pre-defined orders. The TouchDevelop website allocates a stable unique web address relative to touchdevelop.com for your script which can be used to navigate to the script directly. You can share this link with other people. Following this link leads to a webpage dedicated to the script. This webpage provides further statistics for the script such as the number of users who have installed your script on their phone and the number of runs. This page also lists usernames of TouchDevelop users who have reviewed your script as well as detailed comments. Figure 1.4: TouchDevelop website page for each script 5

6 VERSION 1 Once users like your script, they can review it by giving hearts. The webpage shows the number of user reviews (hearts) given to each script by other users. The website also shows the number of discussion posts on your script started by other users. See Figure 1.4. Users cannot review your scripts or give comments related to your scripts on the TouchDevelop website. These two activities are possible on the phone within the Windows Phone TouchDevelop application. Once a user navigates to your script on the phone, by either searching for it, or finding it in the new, top, or featured lists, a user has the option to either review (by clicking the heart), or provide comments. Figure 1.5: Searching, installing, reviewing and commenting on scripts using the TouchDevelop application on the Windows Phone. The selected script can be installed and executed locally by tapping on the down-pointing arrow at the bottom of the screen. The script page (on the touchdevelop.com website and in the app) may show a previously published script on which the current script is based on. TouchDevelop keeps track of the base scripts when you are editing it. Similarly, this page (on the website and in the app) also displays details for other scripts which are based on the current one. In the following chapters you will learn more about writing TouchDevelop scripts on the Windows Phone. 6

7 Figure 1.6: Forward and backward relationship between current script and other scripts as displayed for all scripts on the script webpage AN INTRODUCTION TO THE WINDOWS PHONE TouchDevelop is a Windows Phone application and can be installed and executed on the Windows Phone versions 7.5, or later. For a quick introduction to the Windows Phone visit the Windows Phone website ( Figure 1.7: Pivot control allowing navigation to multiple screens using the drag gesture.* * 7

8 VERSION 1 Like all smart phones today, Windows Phone supports touch interface allowing TAP (a finger touches the screen and releases), and DRAG (A finger touches the screen and moves in any direction). In addition to these basic gestures, allowing easy navigation, Windows Phone also supports a host of additional gestures. Read the details on MSDN ( All applications on the Windows Phone allow navigation to multiple screens, made possible by using the concept of a PIVOT (see Figure 1.7). Swiping sideways or tapping a different pivot point (for example tapping the word installed in Figure 1.7) changes the pivot point and causes different information to be displayed on the screen A QUICK QUIZ Take this quick quiz to see if you understand the concepts discussed in this chapter. i 1. TouchDevelop s language is a) JavaScript for the phone b) A brand new language especially designed for touchscreen phone use c) A simplified language suitable for teaching, but not for real applications d) Purely object-oriented 2. To use TouchDevelop, you only need a) A Windows phone b) Any mobile phone c) A phone and a computer d) Just a computer 3. TouchDevelop is a) A simple system that does not yet access the phone s sensors or media content b) Fully able to access all media content and sensors of the phone, and the internet c) Only able to access media content on the phone such as songs and pictures d) Not able to access the internet yet 4. Typically, new users can write their first TouchDevelop script using sensors in a) A day b) Half a day c) After a week d) An hour and a half 5. Scripts in TouchDevelop can be shared by 8

9 a) ing them b) Publishing them on the Marketplace c) Saving them on to a computer d) Publishing them on the Bazaar 6. To use the TouchDevelop Bazaar, you need a) A Windows Live ID b) A Windows Live or FaceBook Account c) An AppHub Developer account d) None of the above 7. Scripts in the Script Bazaar can be viewed a) Only on the phone through TouchDevelop b) Only on a browser c) On the phone through TouchDevelop and through a browser d) On TouchDevelop, a browser, and print outs 8. Reviewing and giving comments to scripts is possible a) Only on the phone through TouchDevelop b) Only on a browser c) On the phone through TouchDevelop and through a browser d) Only on Facebook 9. A code such as /aoxd is a a) Part of a stable web address in the Bazaar for a script b) Not relevant for most programmers, and can be ignored c) A checksum for the script to ensure that it is not corrupt on downloading d) A conversion code needed to get a script from the Bazaar to the Marketplace. 10. TouchDevelop is a project from a) Microsoft Windows division b) Researchers and engineers at Microsoft Research c) Academics with a grant from Microsoft Research d) All of the above 9

10 VERSION 1 i Answers: 1. b) 2. a) 3. b) 4. d) 5. d) 6. b) 7. c) 10

11 8. a) 9. a) 10. b) 11

touchdevelop R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich

touchdevelop R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich touchdevelop programming on a phone R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich Microsoft Research Version 1

More information

touchdevelop R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich

touchdevelop R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich touchdevelop programming on a phone R Nigel Horspool University of Victoria Judith Bishop Arjmand Samuel Nikolai Tillmann Michał Moskal Jonathan de Halleux Manuel Fähndrich Microsoft Research Version 1.1

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

Built to keep you moving

Built to keep you moving B L A C K B E R R Y Z 1 0: R A I S I N G T H E B A R F O R B U S I N E S S BlackBerry 10 is an entirely new mobile computing platform that removes many of the barriers that slow down other devices. Here

More information

Getting to Know Windows 10. Handout

Getting to Know Windows 10. Handout Handout Handout Session Overview We re excited to share the exciting new features of Windows 10 and look forward to answering any questions in real time as we learn more about this updated platform together.

More information

Going Mobile: Smartphone 101 Workshop

Going Mobile: Smartphone 101 Workshop Going Mobile: Smartphone 101 Workshop Agenda for today s activities Navigating a smartphone How to use apps (short tutorials followed by 10 minute practice session) Make a call Send a text Surf the web

More information

Mobile Technologies. Types of Apps

Mobile Technologies. Types of Apps Mobile Technologies Types of Apps What is mobile? Devices and their capabilities It s about people Fundamentally, mobile refers to the user, and not the device or the application. Barbara Ballard, Designing

More information

Discover the Start screen.

Discover the Start screen. Discover the Start screen. Your Start screen has all of the information that matters most to you. Live tiles keep you up to date. Your favorite apps, such as Office apps, People, News, and more are front

More information

Getting to know your ipad exploring the settings, App store, Mail

Getting to know your ipad exploring the settings, App store, Mail Getting to know your ipad exploring the settings, App store, Mail Exploring the settings Open the settings app from your homepage Wi-Fi Turn Wi-Fi on/off Add new Wi-Fi Connection Enter Network Name, any

More information

First step: Set up an Evernote account online first at

First step: Set up an Evernote account online first at Evernote- Online Digital Notebook http://www.evernote.com Evernote helps you capture, store, manage and remember anything. You can create notebooks to organize information, and each note can be tagged

More information

How to Use Launch on an iphone or ipad

How to Use Launch on an iphone or ipad Getting Started Install the VMware Horizon Client Software on: iphone ipad You will need Capital Power Username and Password Entrust security code (soft token or grid card) App Store account Minimum Operating

More information

Tips & Tricks on Ipad

Tips & Tricks on Ipad Tips & Tricks on Ipad PAGE 1 Page 1 Copying & Pasting Page 2 Splitting the Keyboard Page 3 Capitalizing & Zooming Page 4 App Searching Page 5 Organizing Apps Page 6 Screen Shot & Finger Functions 1.) How

More information

Windows 10: Part 2. Updated: May 2018 Price: $1.80

Windows 10: Part 2. Updated: May 2018 Price: $1.80 Windows 10: Part 2 Updated: May 2018 Price: $1.80 A Special Note on Terminology Windows 10 accepts both mouse and touch commands. This means that you could either use mouse clicks or touch gestures interchangeably.

More information

QUICK START GUIDE.

QUICK START GUIDE. QUICK START GUIDE Touch UI (Touch Screen) Customizable Home Screens Intuitive Rotating Display Using the Virtual QWERTY Handwriting Recognition Transferring Music Browsing the Web Taking a Picture Recording

More information

7 Touchscreen Tablet Quick Start Guide Model: V7TAB8S

7 Touchscreen Tablet Quick Start Guide Model: V7TAB8S 7 Touchscreen Tablet Quick Start Guide Model: V7TAB8S Important Information If you are experiencing a problem with the operation of this Tablet Do not return it to the retailer! Your Touchscreen Tablet

More information

Spark Quick Reference Guide

Spark Quick Reference Guide Spark Quick Reference Guide Making Teamwork Simpler Spark simplifies teamwork by making communication seamless. Send messages, share files, and meet with different teams, all in one place. Easily pull

More information

1. Introduction P Package Contents 1.

1. Introduction P Package Contents 1. 1 Contents 1. Introduction ------------------------------------------------------------------------------- P. 3-5 1.1 Package Contents 1.2 Tablet Overview 2. Using the Tablet for the first time ---------------------------------------------------

More information

Game Board: Enabling Simple Games in TouchDevelop

Game Board: Enabling Simple Games in TouchDevelop Game Board: Enabling Simple Games in TouchDevelop Manuel Fähndrich Microsoft Research One Microsoft Way, Redmond WA 98052, USA maf@microsoft.com February 23, 2012 Abstract TouchDevelop is a novel application

More information

Chapter 2 Editing in TouchDevelop

Chapter 2 Editing in TouchDevelop Chapter 2 In this chapter we describe how to set up TouchDevelop on your phone, how to enter scripts from scratch, and how to extend existing scripts. At the end of the chapter, you should be familiar

More information

CHAPTER 2 EDITING IN TOUCHDEVELOP

CHAPTER 2 EDITING IN TOUCHDEVELOP VERSION 1 CHAPTER 2 In this chapter we describe how to set up TouchDevelop on your phone, how to enter scripts from scratch, and how to extend existing scripts. At the end of the chapter, you should be

More information

Explore Windows 8.1 Update

Explore Windows 8.1 Update Work Smart by Microsoft IT Explore Windows 8.1 Update This guide provides a high-level overview of many new exciting features in the Windows 8.1 Update user interface. Windows 8.1 Update includes improvements

More information

A PERFECT PARTNERSHIP EXPLORE ALL THAT S NEW ABOUT WINDOWS 8 ON ACER S LATEST RANGE OF TOUCHSCREEN PRODUCTS

A PERFECT PARTNERSHIP EXPLORE ALL THAT S NEW ABOUT WINDOWS 8 ON ACER S LATEST RANGE OF TOUCHSCREEN PRODUCTS A PERFECT PARTNERSHIP EXPLORE ALL THAT S NEW ABOUT WINDOWS 8 ON ACER S LATEST RANGE OF TOUCHSCREEN PRODUCTS EXPLORE EIGHT Explore what s great about eight Windows is back, and Acer has developed a range

More information

How to Set Up and Customize Accounts in Windows 10 Mail Application

How to Set Up and Customize  Accounts in Windows 10 Mail Application How to Set Up and Customize Email Accounts in Windows 10 Mail Application Windows 10 comes with a built-in Mail app, from which you can access all your different email accounts (including Outlook.com,

More information

ipad Training Field Management

ipad Training Field Management ipad Training Field Management ipad User Guide ipad Training Topics Overview Navigation Connectivity Field Apps Tips and Tricks Contacts FaceTime icloud imessage Email Safari Calendar Camera 2 Overview

More information

Student FAQ. How do I add my profile photo? 1. From the minibar, click on the down arrow to the right of your name and select Profile.

Student FAQ. How do I add my profile photo? 1. From the minibar, click on the down arrow to the right of your name and select Profile. How do I add my profile photo? 1. From the minibar, click on the down arrow to the right of your name and select Profile. 2. Click on Change Picture. 3. Either drag or Upload your photo. Then click Add.

More information

Your familiar Windows, only better.

Your familiar Windows, only better. Your familiar Windows, only better. Your quick guide to Windows 8.1 for business For Windows 8.1 Update Discover the Start screen. Your Start screen has all of the information that matters most to you.

More information

How to Create and Use a Skype Account

How to Create and Use a Skype Account How to Create and Use a Skype Account Step 1: Go to www.skype.com You will need an email address to create your Skype account Step 2: At the top, right corner, there will be a place to click Get Skype

More information

Using apps You interact with ipad using your fingers to tap, double-tap, swipe, and pinch objects on the touchscreen.

Using apps You interact with ipad using your fingers to tap, double-tap, swipe, and pinch objects on the touchscreen. Basics 3 Using apps You interact with ipad using your fingers to tap, double-tap, swipe, and pinch objects on the touchscreen. Opening and switching between apps To go to the Home screen, press the Home

More information

1. Introduction P Package Contents 1.

1. Introduction P Package Contents 1. 1 Contents 1. Introduction ------------------------------------------------------------------------------- P. 3-5 1.1 Package Contents 1.2 Tablet Overview 2. Using the Tablet for the first time ---------------------------------------------------

More information

Mobile Computing Meets Research Data

Mobile Computing Meets Research Data Mobile Computing Meets Research Data Engineer Bainomugisha Pilot Research Data Center Workshop Mombasa/Kenya Software Languages Lab. Department of Computer Science Vrije Universiteit Brussel, Belgium Department

More information

Overview In this lab you will Explore some of the features of the new Windows 8 Interface.

Overview In this lab you will Explore some of the features of the new Windows 8 Interface. LAB 1 No Programming Experience Exploring the New Windows 8 Modern User Interface (UI) and Windows 8 Apps Overview In this lab you will Explore some of the features of the new Windows 8 Interface. Requirements

More information

Mobility has changed the way we live and work

Mobility has changed the way we live and work Take a Closer Look at Windows 8.1 PC Retreat 2014 Windows 8 is the best business platform we ve ever shipped. Buying Windows 7, when you could get Windows 8 is just leaving value on the table. Windows

More information

Get. Started. All you need to know to get going.

Get. Started. All you need to know to get going. Get Started All you need to know to get going. Special note for Sprint As You Go customers With Sprint As You Go you can free yourself from long-term contracts and enjoy more wireless flexibility. Some

More information

Prospects Mobile. User Guide. ipad Edition

Prospects Mobile. User Guide. ipad Edition Prospects Mobile User Guide ipad Edition Prospects Mobile is simply the most powerful mobile application for real estate professionals today, with a load of features to help you preview, show, and research

More information

Windows 10: Part 1. Updated: May 2018 Price: $2.00

Windows 10: Part 1. Updated: May 2018 Price: $2.00 Windows 10: Part 1 Updated: May 2018 Price: $2.00 A Special Note on Terminology Windows 10 accepts both mouse and touch commands. This means that you could use either mouse clicks or touch gestures interchangeably.

More information

BUILT FOR BUSINESS. 10 Reasons BlackBerry Smartphones Are Still the Best Way to Do Business. Whitepaper

BUILT FOR BUSINESS. 10 Reasons BlackBerry Smartphones Are Still the Best Way to Do Business. Whitepaper 1 BUILT FOR BUSINESS 10 Reasons BlackBerry Smartphones Are Still the Best Way to Do Business Whitepaper 2 10 Reasons BlackBerry Smartphones Are Still the Best Way to Do Business It doesn t matter what

More information

Going Mobile: Tablet 101 Workshop

Going Mobile: Tablet 101 Workshop Going Mobile: Tablet 101 Workshop Agenda for today s activities Navigating a tablet How to use apps (short tutorials followed by 10 minute practice session) Surf the web Take photo/video Check email Download

More information

The Anywhere365 Reception Attendant

The Anywhere365 Reception Attendant The Anywhere365 Reception Attendant brings the reception desk to the next level. It provides powerful functionality to manage the queue realtime, see the availability of colleagues, view advanced dialogue

More information

User Guide for the Backup & Sync Windows Store App

User Guide for the Backup & Sync Windows Store App User Guide for the Backup & Sync Windows Store App Copyright User Guide for the Backup & Sync Windows Store App January, 2013 2013 Webroot Software, Inc. All rights reserved. Webroot is a registered trademark

More information

TRI-CITIES Device Deployment MICROSOFT SURFACE SETUP

TRI-CITIES Device Deployment MICROSOFT SURFACE SETUP TRI-CITIES Device Deployment 2018-19 MICROSOFT SURFACE SETUP Surface Expectations at TRI-CITES ALWAYS bring your device to school FULLY CHARGED! Be responsible accessories, security, etc. Do NOT switch

More information

Using the SHARP touchscreen

Using the SHARP touchscreen Click a menu link to jump straight to that section: SHARP touchscreen essentials Accessing & saving files Annotation with SHARP touchscreens Connecting other devices SHARP touchscreens with Adobe Troubleshooting

More information

Welcome to the Ascend Virtual Sales Office Training Series Ascend

Welcome to the Ascend Virtual Sales Office Training Series Ascend Welcome to the Ascend Virtual Sales Office Training Series 2014 Ascend Today s Agenda Introduction Housekeeping Scope of Appointment Solution Acend for ipad and Windows Completing an electronic enrollment

More information

CSC Introduction to Computers and Their Applications

CSC Introduction to Computers and Their Applications CSC 170 - Introduction to Computers and Their Applications Lecture 9 Software Essentials When searching for new software, it helps to have a framework of categories System Software Operating Systems For

More information

Useful Google Apps for Teaching and Learning

Useful Google Apps for Teaching and Learning Useful Google Apps for Teaching and Learning Centre for Development of Teaching and Learning (CDTL) National University of Singapore email: edtech@groups.nus.edu.sg Table of Contents About the Workshop...

More information

Hosted Exchange. Presented by Joseph Lee

Hosted Exchange. Presented by Joseph Lee Hosted Exchange Presented by Joseph Lee Hosted Exchange Hosted Exchange provides users with essential productivity tools and admins with control, simplicity and choice. Hosted Exchange For users: High

More information

FAQs. A guide for school app administrators

FAQs. A guide for school app administrators FAQs A guide for school app administrators Introduction myschoolapp is a simple and cost-effective way to engage with today s mobile parents and carers who run their lives from their phones. It helps you

More information

Mobile 3.1 ios & Android v2

Mobile 3.1 ios & Android v2 Mobile 3.1 ios & Android v2 Bookshelf Mobile 3.1 ios and Android v2 1 Introduction VitalSource Bookshelf lets you download and access books on any of the following devices: Android smartphone or tablet

More information

User Guide. FingerBeat 2.0. manual version 1.1

User Guide. FingerBeat 2.0. manual version 1.1 User Guide FingerBeat 2.0 manual version 1.1 1 Dear Friend, Thank you for downloading & supporting our work. FingerBeat is an easy to use pocket sampler, drum machine designed for intuition and creative

More information

Microsoft Surface Pro 2 Windows 8 tablet - basic notes for staff

Microsoft Surface Pro 2 Windows 8 tablet - basic notes for staff Microsoft Surface Pro 2 Windows 8 tablet - basic notes for staff Table of Contents Overview... 2 To begin... 3 General tips... 3 Charms bar... 3 Quick Access menu... 4 Take a screenshot... 4 Shut down...

More information

Starting Point Community Learning Partnership

Starting Point Community Learning Partnership Starting Point Community Learning Partnership Week 5 ipads Touchscreen including Keyboard The ipad has a built-in keyboard that appears whenever you're in a text-entry location, such as a Search field

More information

Navigation system basics

Navigation system basics 2014 Navigation system basics Paul Pearson Bowling Green Revision 3.0 Index Contents 1. Introduction...3 2. Overview...4 3. Navigation overview...4 4. Destination Entry....6 5. Points of Interest (POI

More information

ONE BY MOVISTA Movista, L.L.C. All Rights Reserved

ONE BY MOVISTA Movista, L.L.C. All Rights Reserved BY MOVIST 2015 Movista, L.L.C. ll Rights Reserved BY MOVIST How many photos can I attach to a single mplan question? Our solution allows you to attach up to 10 pictures per mplan question. How many signatures

More information

Bluetooth Keyboard Commands with VoiceOver on the ipad

Bluetooth Keyboard Commands with VoiceOver on the ipad Bluetooth Keyboard Commands with VoiceOver on the ipad ios 9.2 Chapter 4: App Navigation using Bluetooth Keyboard Commands (Quick Nav is ON) Module Objectives 4.1 Navigating Dropbox using Bluetooth Keyboard

More information

Windows 8.1. Tiles come in four shapes: small, medium, wide, and large. The red outlined tiles are live tiles.

Windows 8.1. Tiles come in four shapes: small, medium, wide, and large. The red outlined tiles are live tiles. Windows 8/8.1 was Microsoft s attempt to have one operating system for all devices desktops, laptops, phones, tablets, and everything else. Some like it more than others. Microsoft Windows 10 is supposed

More information

Hello. Quick Start Guide

Hello. Quick Start Guide Hello. Quick Start Guide Welcome to your new MacBook Pro. Let us show you around. This guide shows you what s on your Mac, helps you set it up, and gets you up and running with tips for the apps you ll

More information

Using Track Kit App for Lyme Preserves Trail Report

Using Track Kit App for Lyme Preserves Trail Report Using Track Kit App for Lyme Preserves Trail Report Track Kit App Reference Guide: Collecting Tracks, Waypoints and Photos Track Kit is an easy-to-use smartphone app for recording paths that works like

More information

Exploring Windows 10. Start menu. Display the Start menu. Microsoft IT Showcase

Exploring Windows 10. Start menu. Display the Start menu. Microsoft IT Showcase Microsoft IT Showcase Exploring Windows 10 Windows 10 is designed to please both touch and mouse users. It s also designed to be intuitive for users of both Windows 7 and Windows 8.1, incorporating the

More information

Microsoft Yammer Users Guide

Microsoft Yammer Users Guide 2017 Microsoft Yammer Users Guide This guide will assist you with using Microsoft Yammer. INFORMATION TECHNOLOGY SERVICES ITS TRAINING Table of Contents What is Yammer?... 2 Access... 2 Navigating Yammer...

More information

Connected Consumer Survey

Connected Consumer Survey Connected Consumer Survey Source questions for data displayed on www.consumerbarometer.com NB question titles (in bold) are for ease of reading, they were not displayed to respondents Device usage Which,

More information

RVC3000 User Guide VERSION 1.2. Vytru, Inc. 0

RVC3000 User Guide VERSION 1.2. Vytru, Inc. 0 2015 RVC3000 User Guide VERSION 1.2 Vytru, Inc. 0 Contents 1.1 Vytru RVC3000 System... 2 1.2 About Vytru RVC3000 User Guide... 2 2. Getting Started with the RVC3000... 2 2.1 Powering the System On and

More information

WELCOME Mobile Applications Testing. Copyright

WELCOME Mobile Applications Testing. Copyright WELCOME Mobile Applications Testing Copyright NataliaS@portnov.com 1 CyanogenMod and Lineage OS Latest Version for all devices Marshmallow offers a number of useful features that CM and Lineage leverages,

More information

User Guide: Sprint Direct Connect Plus - ios. User Guide. Sprint Direct Connect Plus Application. ios. Release 8.3. December 2017.

User Guide: Sprint Direct Connect Plus - ios. User Guide. Sprint Direct Connect Plus Application. ios. Release 8.3. December 2017. User Guide Sprint Direct Connect Plus Application ios Release 8.3 December 2017 Contents 1. Introduction and Key Features... 6 2. Application Installation & Getting Started... 8 Prerequisites... 8 Download...

More information

How to Work the ipad Buttons

How to Work the ipad Buttons How to Work the ipad Buttons Using the Apple ipad is pretty intuitive but to save time, have a look at these ipad buttons that you'll use frequently. They'll make your new ipad even simpler. The On/Off,

More information

IMO S User Manual

IMO S User Manual IMO S User Manual Description of the specification This manual describes how to use the phone's concise information, such as the desire to quickly grasp the basic practical methods of this phone, please

More information

ArtecRobo Bluetooth Controller User Guide. Published 2015/04/01 Revised 2017/01/16

ArtecRobo Bluetooth Controller User Guide. Published 2015/04/01 Revised 2017/01/16 ArtecRobo Bluetooth Controller User Guide Published 2015/04/01 Revised 2017/01/16 Version History Date Content 2015/04/01 First version 2017/01/16 Updated for new Studuino website 2 Index 1. Getting Started...

More information

Exploring Windows 10. Work Smart by Microsoft IT. Topics in this guide include: Snap enhancements. Notification center. For more information

Exploring Windows 10. Work Smart by Microsoft IT. Topics in this guide include: Snap enhancements. Notification center. For more information Work Smart by Microsoft IT Exploring Windows 10 Windows 10 is designed to please both touch and mouse users. It s also designed to be intuitive for users of both Windows 7 and Windows 8.1, incorporating

More information

Solving the Windows 8 Puzzle

Solving the Windows 8 Puzzle Solving the Windows 8 Puzzle Why the change? PC sales had stagnated Touch tablets and smartphones had captured people s imagination Microsoft had to enter the new era Windows 8 is different It merges touch

More information

Using Windows 8 (and new Windows 8.1)

Using Windows 8 (and new Windows 8.1) Using Windows 8 (and new Windows 8.1) KSC Seminar Presented by Steve Courtney Director KSC Computer Training Team With support from the KSC Computer Training Team November 7 th,2013 1 Seminar Topics Windows

More information

Room 4 User Guide. Version 1.0

Room 4 User Guide. Version 1.0 Room 4 User Guide Version 1.0 Contents 1. About Room 4... 2 2. Getting Started with Room 4... 2 2.1 Powering Room 4 On... 2 2.2 Meeting Room Identity and Calendar... 3 2.3 Room sign-in... 6 2.4 Signing-In

More information

BroadSoft UC-One User Experience Apps for the Anywhere Workplace

BroadSoft UC-One User Experience Apps for the Anywhere Workplace BroadSoft UC-One User Experience Apps for the Anywhere Workplace 2016 BroadSoft. All Rights Reserved. Can we talk? Sure, we can talk. We can also share. See. Meet. Collaborate. Anywhere. Anytime. Any device.

More information

Get started. All you need to know to get going.

Get started. All you need to know to get going. Get started All you need to know to get going. Welcome! Sprint is committed to developing technologies that give you the ability to get what you want when you want it, faster than ever before. This booklet

More information

eclicker Host 2 Product Overview For additional information and help:

eclicker Host 2 Product Overview For additional information and help: eclicker Host 2 Product Overview For additional information and help: support@eclicker.com Compatible with the iphone, ipod touch, and ipad running ios 5.0+. Apple, the Apple logo, iphone, and ipod touch

More information

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15

Libraries. Multi-Touch. Aero Peek. Sema Foundation 10 Classes 2 nd Exam Review ICT Department 5/22/ Lesson - 15 10 Classes 2 nd Exam Review Lesson - 15 Introduction Windows 7, previous version of the latest version (Windows 8.1) of Microsoft Windows, was produced for use on personal computers, including home and

More information

Primal s 3D Anatomy and Physiology

Primal s 3D Anatomy and Physiology USER GUIDE Primal s 3D Anatomy and Physiology ON ipad Welcome to our user guide to 3D Anatomy and Physiology for ipad. Please read on, or select one of the links opposite to jump straight to a particular

More information

User s Guide. Attainment s. GTN v4.11

User s Guide. Attainment s. GTN v4.11 Attainment s User s Guide A printable PDF of this user guide is available from the Attainment Company website: https://www.attainmentcompany.com/gotalk-now Contents 1 Getting Started with GoTalk NOW 1

More information

Assignment 1 What is a Computer?

Assignment 1 What is a Computer? Assignment 1 What is a Computer? Hello, I'm PC. Read about the computer. Answer the questions. A computer is a tool that runs programs. The computer is sometimes called a "personal computer" or PC for

More information

Version Android User's Guide. May-02-13

Version Android User's Guide. May-02-13 Version 12.5 Android User's Guide May-02-13 Table of Contents Chapter 1 Overview 1 Getting Help 2 Other Resources 3 Documentation and Learning Resources 3 Technical Support 4 Community 4 Blackboard Collaborate

More information

AIRCALL GUIDE FOR ADMINS

AIRCALL GUIDE FOR ADMINS AIRCALL GUIDE FOR ADMINS 1 TABLE OF CONTENTS Welcome to Aircall! 1. Configure your Account Configure your numbers Manage your agents Explore Analytics Choose your plan & pricing 2. Configure your App Make

More information

The ipad Center for Innovation in Teaching and Research Presenter: Chad Dennis Instructional Technology Systems Manager

The ipad Center for Innovation in Teaching and Research Presenter: Chad Dennis Instructional Technology Systems Manager The ipad Center for Innovation in Teaching and Research Presenter: Chad Dennis Instructional Technology Systems Manager ce-dennis@wiu.edu Copyright 2012 Center for Innovation in Teaching and Research 1

More information

Vodafone One Net app Quick Start Guide For Android tablet

Vodafone One Net app Quick Start Guide For Android tablet Vodafone One Net app Quick Start Guide For Android tablet Contents What is the One Net app? 1 Installing the One Net app 2 Logging in and out 2 Logging in for the first time 2 Logging out 2 Changing display

More information

GETTING STARTED 8 December 2016

GETTING STARTED 8 December 2016 GETTING STARTED 8 December 2016 About Platform... 4 Browser support... 5 Registration Registering as a Teacher... 6 Registering as a Student... 6 Registering as School... 6 Registering as Municipality

More information

2017 NMUG CLASSES MANAGING THE IPHONE AND IPAD IN IOS 10

2017 NMUG CLASSES MANAGING THE IPHONE AND IPAD IN IOS 10 2017 NMUG CLASSES MANAGING THE IPHONE AND IPAD IN IOS 10 1 iphone Overview Your Apple ID is the account you use for just about everything you do with Apple. If you already have an Apple ID use it when

More information

Office 365: . Accessing and Logging In. Mail

Office 365:  . Accessing and Logging In. Mail Office 365: Email This class will introduce you to Office 365 and cover the email components found in Outlook on the Web. For more information about the Microsoft Outlook desktop client, register for a

More information

ipad app 2014 Attainment Company, Inc.

ipad app 2014 Attainment Company, Inc. ipad app 2014 Attainment Company, Inc. Table of Contents Overview... 1 Quick... Start 2... 2 Logging In... 2 Directories... 4 Reading Stories... 5 Adding a User Seeing... and Hearing the Stories 6... 6

More information

Windows 10. Page 1 of 15

Windows 10. Page 1 of 15 Windows 10 Microsoft Windows Microsoft makes the Windows operating system used in many computers. The operating system is a set of instructions that tells your computer how to run and how to manage the

More information

Kaltura App Things to Remember... 3 Downloading the App My Media... 4

Kaltura App Things to Remember... 3 Downloading the App My Media... 4 Table of Contents Kaltura App... 3 Things to Remember... 3 Downloading the App... 3 My Media... 4 To access My Media from the MediaSpace mobile app... 4 Actions List... 6 To publish a video... 7 To delete

More information

Getting to Know Keynote on ipad

Getting to Know Keynote on ipad Getting to Know Keynote on ipad This guide will give you the basic instruction of how to use the Keynote App on ipad. Get to Know Keynote Step 1 To create new presentations and find the ones you ve worked

More information

User Guide. Campus Connect

User Guide. Campus Connect User Guide Campus Connect Version 1.0, updated 1/9/2014 Welcome to Campus Connect Your school offers a fun way to watch your favorite programs from your laptop, tablet and smartphone as you travel around

More information

WINDOWS 8 CHEAT SHEET

WINDOWS 8 CHEAT SHEET WINDOWS 8 CHEAT SHEET FIVE BIG CHANGES IN WINDOWS 8 Windows 8 looks and behaves much differently from previous versions of Windows. Remember these five big changes, and you ll be well prepared for Windows

More information

ClassHub for Teachers. A User Guide for the Classroom

ClassHub for Teachers. A User Guide for the Classroom ClassHub for Teachers A User Guide for the Classroom Table of Contents CLASSHUB TEACHER... My Class Settings... Class List... Using Views and Screen Peek... Actions... MIRRORING... Mirroring Actions...

More information

How to Access Your Digital Member Magazine

How to Access Your Digital Member Magazine How to Access Your Digital Member Magazine GETTING STARTED WHERE TO GO: Point your browser to daytonartinstitute.org/magazine to find the latest issue of the Member Magazine. WHERE TO GO: You may also

More information

User s Guide. Contents. Get started 3

User s Guide. Contents. Get started 3 Contents User s Guide Get started 3 Get around 3 Touch & type 4 Use the lock screen 5 Make yourself at home 6 Change the wallpaper 6 Arrange & work with apps 7 Use folders 8 Add widgets 9 Try some apps

More information

SPORTS DOOD. User Guide v1

SPORTS DOOD. User Guide v1 SPORTS DOOD User Guide v1 TOOLBAR contains the main tools as well as the playbook (clipboard) and the menu button for things like saving and sharing SUBMENU contains a relevant selection of options, properties

More information

Media Cart Instructions

Media Cart Instructions This document covers operation of the media on the cart. The Touch Pad makes it easy to switch from one type of media to another. If at any point you experience difficulty, contact support as described

More information

INTRODUCTION... 2 GETTING STARTED...

INTRODUCTION... 2 GETTING STARTED... Conventions used in this document: Keyboard keys that must be pressed will be shown as Enter or Ctrl. Controls to be activated with the mouse will be shown as Start button > Settings > System > About.

More information

Get. Started. All you need to know to get going.

Get. Started. All you need to know to get going. Get Started All you need to know to get going. Special note for Sprint As You Go customers With Sprint As You Go you can free yourself from long-term contracts and enjoy more wireless flexibility. Some

More information

Microsoft Outlook Web App 2013

Microsoft Outlook Web App 2013 BrainStorm Quick Start Card for Microsoft Outlook Web App 2013 With Microsoft Outlook Web App for Exchange Server 2013, you can manage your email, calendar, and contacts wherever you go, on almost any

More information

SIMPLIFY MULTI-PLATFORM ENTERPRISE MOBILITY MANAGEMENT

SIMPLIFY MULTI-PLATFORM ENTERPRISE MOBILITY MANAGEMENT DATASHEET SIMPLIFY MULTI-PLATFORM ENTERPRISE MOBILITY MANAGEMENT Silver level EMM Enterprise Mobility Management for Corporate-owned and BYOD devices BlackBerry Enterprise Service 10 is a powerful device,

More information

Realize Reader Chrome App Version User Guide

Realize Reader Chrome App Version User Guide Realize Reader 18.0 Chrome App Version 3.2.0 User Guide 3/9/2018 Contents Contents ii What Is Realize Reader 1 Use Realize Reader Mobile Apps 1 Navigate the Bookshelf 2 View Information About a Book 2

More information

Printing from anywhere to Thousand Oaks Library s printers

Printing from anywhere to Thousand Oaks Library s printers Printing from anywhere to Thousand Oaks Library s printers The Library provides mobile printing from laptops, tablets and smartphones. There are 4 ways to send print jobs remotely to the Library s printers:

More information