107 Building Your First Mobile App Using Flash. Phil Cowcill, Canadore College

Size: px
Start display at page:

Download "107 Building Your First Mobile App Using Flash. Phil Cowcill, Canadore College"

Transcription

1 107 Building Your First Mobile App Using Flash Phil Cowcill, Canadore College

2 Mobile Devices Sessions Presenter: Phil (Twitter) This handout is geared to provide you with the step-by-step instructions to build a Flash application that can be tested in an emulator. The same file can be published as a SWF that can be embedded in a web page. With a few clicks this file can be published to an AIR application and an ios application. Accelerometer Most mobile devices have technology known as an Accelerometer. The Accelerometer will determine physical movement and positioning of the mobile device. Flash can tap into this functionality and allow you to alter symbols. To create a Flash file that taps into the accelerometer: 1. Create a new Flash file that is ActionScript Change the size to 320 x Add a dynamic text field near the top of the stage. 4. Give it the Instance name mytext. 5. Draw an object on the stage. In this case I drew an oval and coloured it with a radial fill. 6. Double click on the object you just drew. 7. Convert it to a movie symbol. 8. Give it the Instance name. In this case, the movie clip s Instance name is mcball. 9. Make a new Layer. 10. Rename the layer Actions. 11. Click on the new layer s empty key frame. Open the Actions panel. 12. Enter the following code. if(accelerometer.issupported) { mytext.text = "This device has an Accelerometer"; var accel:accelerometer = new Accelerometer(); accel.addeventlistener(accelerometerevent.update, moveball) else { mytext.text = "No accelerometer control."; function moveball(e:accelerometerevent) :void { 13. Test the movie by pressing CTRL+Enter (or Command +Enter on the Mac). What should happen is Flash will produce a SWF and you will get the message that No accelerometer control is available. Session 107 Building Your First Mobile App Using Flash Phil Cowcill, Canadore College Page 1

3 NOTE: When typing in the code and you use the Flash hint, two import statements were added to the top of the code. The following two lines should have been inserted. If they didn t appear at the top, key these lines in manually. import flash.sensors.accelerometer; import flash.events.accelerometerevent; Change to an Emulator The reason we got the that No accelerometer control is because the computer running the SWF does not have an accelerometer built in. So, to test this option out, we can move the SWF to an emulator. To publish to an emulator: 1. Make sure the file is saved. In this case, the file was saved as AccelerometerTest.fla. 2. Click the Control menu option. Locate the Test Movie. In the fly out menu choose Device Central. 3. After a while, the Device Central application will start and the SWF will be loaded in the mobile device. Change Devices in Emulator At the time of writing these steps, there are close to 700 devices that have been emulated in the Device Central application. This is up from 583 devices six months ago. Not all these devices can run Flash. The Device Central is also used with Dreamweaver so you can emulate a website on a mobile device. Not all these devices are loaded at once. Here are the steps on loading a new device: 1. Click the BROWSE button on the top left part of the title bar. 2. Locate a phone in this case the HTC Desire. Double click the phone. 3. Click the Phone and drag it to the Test Devices panel. Device Central will install that device into its profile. 4. Click on the HTC Desire in the Test Devices panel. 5. Click on the Emulate Flash on the title bar. This will allow you to test your Flash file in the HTC Desire phone. Code to Access Accelerometer The accelerometer is very sensitive to movement. The numbers being sent from the accelerometer are very small. So in order to move the movie clip at a half decent pace, we need to multiply the acceleration. Add the following code. The new code is bolded while the non bolded code existed from the previous step. var dx:int = 0; var dy:int = 0; // delta x movement // delta y movement function moveball(e:accelerometerevent) :void { dx = e.accelerationx * 100; dy = e.accelerationy * 100; Session 107 Building Your First Mobile App Using Flash Phil Cowcill, Canadore College Page 2

4 Move the Movie Clip Not to move the movie clip around, we need to make an event listener that runs on the Enter Frame event. Add the following code below the moveball() function: this.addeventlistener(event.enter_frame, loop); function loop(e:event): void { mcball.x -= ((mcball.x + dx) - mcball.x) * 0.3; mcball.y += ((mcball.y + dy) - mcball.y) * 0.3; if(mcball.y < (-mcball.height)) { mcball.y = stage.stageheight; if(mcball.y > (stage.stageheight + mcball.height)) { mcball.y = mcball.height - mcball.height; if(mcball.x < -(mcball.width)) { mcball.x = (stage.stagewidth + mcball.width); if(mcball.x > (stage.stagewidth + mcball.width)) { mcball.x = -(mcball.width); Test the movie out by pressing CTRL+Enter (Command+Enter on the Mac). You can move the phone in the Accelerometer panel in Device Central to see the ball move. Package for AIR The previous steps built a standard SWF file that can be played on a mobile device that supports Flash. Another technology that many mobile devices are now starting to support is the Adobe AIR (Adobe Integrated Runtime). For example, Research in Motion (RIM) Playbook uses AIR extensively. AIR also allows developer to create AIR applications using HTML/JavaScript/CSS/XML, Flash or Flex. An AIR application can also be played on multiple platforms with consistency. Basically, it allows you to create a web application and not rely on a browser. The following steps will allow you to publish the current file to an AIR application. 1. Click on the File menu option. 2. Choose Publish Settings. 3. In the Publish Settings dialog box, click on the Flash tab. 4. Click on the Player pull-down menu. 5. Choose Adobe AIR Click on the Settings tab beside the Player pull-down menu. 7. Change the dialog boxes as needed on the General tab. You can create an Install EXE file for Window machines that will install this AIR app under the Program Files. 8. Click on the Certificate tab. 9. Click the Browse button to find the.p12 certificate. If you don t have a certificate, click the Create button to generate a local certificate. Session 107 Building Your First Mobile App Using Flash Phil Cowcill, Canadore College Page 3

5 10. Enter your password for the certificate. 11. Under the icons, place the appropriate sized PNG. 12. Click the Publish button. That s it. You now have created an AIR application. A couple of things to note: AIR applications have to be created with ActionScript 3.0 You eventually need to purchase a.p12 certificate. You can purchase a one year license for $199 ($349 for a two year license). You can visit the following site to purchase your AIR certificate: If your AIR application requires other files such as pictures, video or sound files that it pulls from the hard drive, these files need to be added to the AIR application. The files can be added under the General tab and the included files. I would recommend keeping the assets in a sub folder. You can add an entire folder in the Include Files. Package for ios In the previous steps, we packaged a Flash file into an AIR application. The process to make an ios application for iphone/ipod Touch or ipad is very similar. To create an ios app: 1. Click on the File menu option. 2. Choose Publish Settings. 3. In the Publish Settings dialog box, click on the Flash tab. 4. Click on the Player pull-down menu. 5. Choose iphone OS. 6. Click on the Settings tab beside the Player pull-down menu. 7. Click on the Deployment tab. 8. Click the Browse button to find the.p12 certificate. 9. Enter the password for the certificate. 10. Browse for the Provisioning profile file. 11. Click the Publish button. Eventually this will create an IPA file. You have to use the local version of itunes to copy the IPA file onto the ios device. The cost of the ios developer certificate is $99 a year and can be purchased only from Apple. Session 107 Building Your First Mobile App Using Flash Phil Cowcill, Canadore College Page 4

How to resize content for multiple screens

How to resize content for multiple screens Adobe Flash Professional Guide How to resize content for multiple screens Many mobile devices are on the market and their screen sizes vary. A common challenge when developing mobile applications (or web

More information

Version 1.0. PNY DUO-LINK 4 User Manual

Version 1.0. PNY DUO-LINK 4 User Manual Version 1.0 PNY DUO-LINK 4 User Manual Table of Contents 1. PRODUCT DESCRIPTION 3 2. SYSTEM REQUIREMENTS 4 3. DUO-LINK APP INSTALLATION 4 4. DUO-LINK APP DESCRIPTION 6 5. FILE MANAGEMENT 7 5.1 Types of

More information

PUBLISHING FLASH. Lesson Overview

PUBLISHING FLASH. Lesson Overview PUBLISHING FLASH Lesson Overview In this lesson, you ll learn how to do the following: Test a Flash document Understand the Bandwidth Profiler Change publish settings for a document Understand the difference

More information

In this lesson, you ll learn how to do the following: Understand runtime environments Understand the output files for different Animate

In this lesson, you ll learn how to do the following: Understand runtime environments Understand the output files for different Animate 12 PUBLISHING Lesson Overview In this lesson, you ll learn how to do the following: Understand runtime environments Understand the output files for different Animate document types Modify the publish settings

More information

PNY DUO-LINK On-The-Go Flash Drive for iphone and ipad. User Manual

PNY DUO-LINK On-The-Go Flash Drive for iphone and ipad. User Manual PNY DUO-LINK On-The-Go Flash Drive for iphone and ipad User Manual Table of Contents 1. Introduction 2. System Requirements 3. Physical Descriptions 4. DUO-LINK App Installation 5. Using DUO-LINK App 5.1

More information

Captivating Movies! Getting Started with Captivate

Captivating Movies! Getting Started with Captivate Captivating Movies! Getting Started with Captivate Welcome to Getting Started with Captivate. In this tutorial you will learn to import a PowerPoint file into a Captivate Project. Then you will prepare

More information

Testing your TLS version

Testing your TLS version Testing your TLS version If you are not able to access Progressive Leasing websites, you may need to upgrade your web browser or adjust your settings. In order to test your TLS version to see if it is

More information

Engage ios App Administrator s Guide

Engage ios App Administrator s Guide Engage ios App Administrator s Guide Contents Contents... 1 Introduction... 2 Target Audience... 2 Devices Supported... 2 SharePoint Platforms Supported... 2 SharePoint Security & Privileges... 2 Deploying

More information

How to create an animated face

How to create an animated face Adobe Flash CS4 Activity 5.1 guide How to create an animated face This activity walks you step by step through the process of creating a simple animation by using Adobe Flash CS4. You use drawing tools

More information

Briefcase ios 3.7. Administrator s Guide

Briefcase ios 3.7. Administrator s Guide Briefcase ios 3.7 Administrator s Guide Contents Colligo Briefcase ios Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges...

More information

Office 365. Quick Start User Guide

Office 365. Quick Start User Guide Office 365 Quick Start User Guide Contents What is Office 365?... 5 How to Sign In to Office 365... 5 To Sign Out when you are done... 5 Why Use Office 365?... 5 Office 365 Home Page... 6 Top right-hand

More information

How to create interactive documents

How to create interactive documents Adobe InDesign Guide How to create interactive documents You can use Adobe InDesign to create dynamic web content or interactive documents. InDesign supports export to web-ready HTML or interactive PDF.

More information

Organize Your iphone: Icons and Folders

Organize Your iphone: Icons and Folders 227 Chapter 7 Organize Your iphone: Icons and Folders Your new iphone is very customizable. In this chapter we will show you how to move icons around and put your favorite icons just where you want them.

More information

NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown

NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown NotifyMDM Device Application User Guide Installation and Configuration for ios with TouchDown NotifyMDM for ios Devices, Version 3.x NotifyMDM for ios with TouchDown 1 Table of Contents NotifyMDM for ios

More information

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

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

More information

RDM+ software consists of two components: the desktop part and the client module.

RDM+ software consists of two components: the desktop part and the client module. RDM+ Remote Desktop for Mobiles For ipad Getting Started Guide RDM+ (Remote Desktop for Mobiles) is a communication tool that gives you the unique ability to connect to your desktop computer through ipad

More information

Itunes Ipod Manual Sync New Computer Without Deleting Music Windows 7

Itunes Ipod Manual Sync New Computer Without Deleting Music Windows 7 Itunes Ipod Manual Sync New Computer Without Deleting Music Windows 7 itunes allows only one-way synchronization of musics from computer to ipod, so if for or buying new computer, you can easily copy back

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Make and Export a New Backup Access the Options On ipad, tap the rightmost button on the toolbar to access the Options. On iphone/ipod touch, tap the

More information

DropSend Getting Started Guide

DropSend Getting Started Guide DropSend Getting Started Guide DropSend. 2016 Step 1: How to send a file without registration If you want to quickly send a large file, you can do it from the homepage in just a couple of clicks. Here

More information

Export / Import using itunes File Sharing

Export / Import using itunes File Sharing Export to itunes File Sharing Access Edit Mode Tap the pencil button on the bottom toolbar to access Edit Mode. Select a Button or a Folder Select to the button(s) you want to export/ import. A checkmark

More information

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

Dropbox can be accessed from mobile devices as well.

Dropbox can be accessed from mobile devices as well. Dropbox provides storage space for users to grab files from any device that has Internet access. Dropbox gives you free storage up to 2 GB and the ability to easily share files with others. Dropbox can

More information

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads.

Click Freegal Music from the surreylibraries.ca (hover over the blue Research and Downloads tab and select Downloads. Freegal Quick Facts Freegal gives Surrey residents with a valid Surrey Libraries card 3 free songs per week. Residents can download and KEEP the songs. You simply log into Freegal with your library card

More information

TIP Subscription Guide

TIP Subscription Guide TIP Subscription Guide 02 Table of Contents Subscription to The Investor s Podcast via: Mac 03 iphone/ipad 07 Windows (itunes) 13 Windows (Stitcher) 19 Android Phone 27 03 Subscription via Mac: Step 1

More information

Tomenai.net User s Guide. Next

Tomenai.net User s Guide. Next ver1.1 Mn_cst-C How to Use Tomenai.net 3 Tomenai.net Sumitomo IMMs Service Network Wi-Fi 2 Tomenai.net Sumitomo IMMs Service Network USB There are three ways to use Tomenai.net. 1. Accessing Tomenai.net

More information

FLASH ANIMATION TUTORIAL

FLASH ANIMATION TUTORIAL FLASH ANIMATION TUTORIAL This tutorial will show you how to make a simple flash animation using basic graphic elements and sounds. It will also work as the display page for your Bullet Movie soundtrack

More information

Tutorial for loading music files into an Ipad

Tutorial for loading music files into an Ipad Tutorial for loading music files into an Ipad 1. For this example we ll use Adobe Acrobat Reader as the application (app) that we ll use to file and store our music on our Ipad. There are other music applications

More information

Dreamweaver Domain 3: Understanding the Adobe Dreamweaver CS5 Interface

Dreamweaver Domain 3: Understanding the Adobe Dreamweaver CS5 Interface : Understanding the Adobe Dreamweaver CS5 Interface Adobe Creative Suite 5 ACA Certification Preparation: Featuring Dreamweaver, Flash, and Photoshop 1 Objectives Identify elements of the Dreamweaver interface

More information

ios App Resigning and VoIP Certificate Guide

ios App Resigning and VoIP Certificate Guide ios App Resigning and VoIP Certificate Guide 1 Configuring ios Support In order to provide the best security possible, Lookout distributes its Lookout for Work ios app outside of the ios App Store. Before

More information

Save your project files in a folder called: 3_flash_tweens. Tweens in Flash :: Introduction

Save your project files in a folder called: 3_flash_tweens. Tweens in Flash :: Introduction INF1070: Hypermedia Tools 1 Assignment 3: Tween Animation in Flash Save your project files in a folder called: 3_flash_tweens Tweens in Flash :: Introduction Now that you ve learned to draw in Flash, it

More information

Colligo Briefcase. for Good Technology. Administrator Guide

Colligo Briefcase. for Good Technology. Administrator Guide for Good Technology Administrator Guide Contents Introduction... 2 Target Audience... 2 Overview... 2 Key Features... 2 Platforms Supported... 2 SharePoint Security & Privileges... 3 for Good Technology...

More information

Adobe Flash CS4 Part 3: Animation

Adobe Flash CS4 Part 3: Animation CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 3: Animation Fall 2010, Version 1.0 Table of Contents Introduction...2 Downloading the Data Files...2 Understanding

More information

Adobe Flash CS4 Part 4: Interactivity

Adobe Flash CS4 Part 4: Interactivity CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 4: Interactivity Fall 2010, Version 1.0 Table of Contents Introduction... 2 Downloading the Data Files... 2

More information

INSRUCTION SHEET. Flash Lab #1

INSRUCTION SHEET. Flash Lab #1 Advanced Web Page Design STANDARD 5 The student will use commercial animation software (for example: Flash, Alice, Anim8, Ulead) to create graphics/web page. Student Learning Objectives: Objective 1: Draw,

More information

MyApp Setup Manual. For Apple and Android Devices

MyApp Setup Manual. For Apple and Android Devices MyApp Setup Manual For Apple and Android Devices Download your App...4 Apple Devices...4 iphone App Installation Troubleshooting...5 Android Devices...6 Homeowner Instructions:...7 Before your air conditioner

More information

ios Ad Hoc Provisioning Quick Guide

ios Ad Hoc Provisioning Quick Guide ios Ad Hoc Provisioning Quick Guide Applies to: Applications developed for all kinds of ios devices (iphone, ipad, ipod). For more information, visit the Mobile homepage. Summary This article is a quick

More information

Exporting a Class List from MarkBook Windows to MarkBook Mac and ios

Exporting a Class List from MarkBook Windows to MarkBook Mac and ios Exporting a Class List from MarkBook Windows to MarkBook Mac and ios In MarkBook Mac or ios (IPad, iphone and ipod touch), the class list may be entered directly by typing or imported from a file created

More information

Image from Google Images tabtimes.com. CS87 Barbee Kiker

Image from Google Images tabtimes.com. CS87 Barbee Kiker Image from Google Images tabtimes.com CS87 Barbee Kiker bjkik@comcast.net Table of Contents ipad Parts... 3 Home Button... 3 Touch Gestures... 4 Additional Gestures... 4 Control Center... 5 Notification

More information

For this class we are going to create a file in Microsoft Word. Open Word on the desktop.

For this class we are going to create a file in Microsoft Word. Open Word on the desktop. File Management Windows 10 What is File Management? As you use your computer and create files you may need some help in storing and retrieving those files. File management shows you how to create, move,

More information

Publishing overview. HTML wrapper for AS3 documents

Publishing overview. HTML wrapper for AS3 documents Publishing overview You can play content in the following ways: In Internet browsers that are equipped with Flash Player As a stand-alone application called a projector With the Flash ActiveX control in

More information

HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER

HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER HOW TO DOWNLOAD ELECTRONIC BOOKS ONTO YOUR E-BOOK READER From the Peoria Public Library homepage http://library.peoriaaz.gov Click on Digital Downloads, listed on the top of the screen. Click on Greater

More information

In order to update you will have to uninstall the current version and install the newer version using the same procedure.

In order to update you will have to uninstall the current version and install the newer version using the same procedure. Installing the 3M Cloud Library app on your Kindle Fire DISCLAIMER These instructions are to be used as a reference only. Please note that by downloading the 3M Cloud Library app you assume all risk of

More information

Manually Delete Songs From Ipod Touch 4g Ios 6

Manually Delete Songs From Ipod Touch 4g Ios 6 Manually Delete Songs From Ipod Touch 4g Ios 6 If you'd like to download the song or playlist to your ios device, tap the You can delete a song or album from your iphone, ipad, or ipod touch at any time.

More information

September Student User Manual

September Student User Manual September 2016 Student User Manual Contents Why use GCSEPod? 1 Getting started 2 The Dashboard 4 Podcasts 5 My Courses 7 Playlists 9 Assignments 12 Sharing Content 14 Changing your username, password &

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

Lab - Working with ios

Lab - Working with ios Lab - Working with ios Introduction In this lab, you will place apps on the home screen and move them between different home screens. You will also create folders. Finally, you will install on the ios

More information

Using the Mobile App for Defense Connect Online

Using the Mobile App for Defense Connect Online Using the Mobile App for Defense Connect Online Conduct and Attend Meetings Virtually Anywhere AUTHOR Aaron W Wolf DCO Evangelist Carahsoft Technology Corp. 703.889.9781 aaron.w.wolf@carahsoft.com Defense

More information

Manually Deleting Songs Ipod Touch Without Computer

Manually Deleting Songs Ipod Touch Without Computer Manually Deleting Songs Ipod Touch Without Computer Delete songs from ipod/ipod touch but still keep on computer: Connect your ipod to Click the device mark of your ipod _ Click Summary _ Check Manually

More information

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps.

QUICK START GUIDE. Quick Start Guide. This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. Quick Start Guide This will assist you to setup and distribute content to a StratosMedia Player device in 4 easy steps. NOTE: All devices need active internet connectivity. Google Chrome is a browser that

More information

Microsoft Office 365 for Education

Microsoft Office 365 for Education Microsoft Office 365 for Education Microsoft Office 365 for Education is the online version of Microsoft Office, which allows storage and true collaboration on the Cloud. Works on any device i.e. iphone,

More information

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special.

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special. This section describes how to add content to your pages including text, Microsoft Office documents, images, Flash, and other media content. Inserting Text To add text to your document, you can type the

More information

Instructions Putting Movies Itouch Touch Without Itunes

Instructions Putting Movies Itouch Touch Without Itunes Instructions Putting Movies Itouch Touch Without Itunes Learn how to manually manage music and movies if you want to quickly sync a and itunes can't sync without first erasing and replacing all itunes

More information

Manually Sync Iphone Multiple Computer Itunes

Manually Sync Iphone Multiple Computer Itunes Manually Sync Iphone Multiple Computer Itunes 11 Depending on your Apple device, itunes can sync media such as music, movies, TV shows, photos, itunes can't transfer this media back to your computer. 94

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

LIBRARY MEMBER USER GUIDE

LIBRARY MEMBER USER GUIDE LIBRARY MEMBER USER GUIDE CONTENTS PAGE Part 1) How to create a new account...2 Part 2) How to checkout a magazine issue...4 Part 3) How to download Zinio Reader 4...10 a) For your PC...10 b) For your

More information

For this option, you need a flash drive or CD (CD-R or CD-RW). NOTE: If you use a CD-R, be careful not to close the session.

For this option, you need a flash drive or CD (CD-R or CD-RW). NOTE: If you use a CD-R, be careful not to close the session. DSP&S Butte College Saving: MP3 File Kurzweil 3000 For this option, you need a flash drive or (-R or -RW). NOTE: If you use a -R, be careful not to close the session. This will allow you to: Save your

More information

1. Click the Share menu at the top of the screen and then click File (Including Video)

1. Click the Share menu at the top of the screen and then click File (Including Video) WebEx Sharing Resources for Mac Introduction During a WebEx session, the host has the ability to share resources with attendees. This document will take you through the process of sharing documents, applications,

More information

PDF. which device? Features. How it will look - PC (Microsoft Windows XP/Vista/7)

PDF. which device? Features. How it will look - PC (Microsoft Windows XP/Vista/7) PDF Which device? Features How it will look - PC (Microsoft Windows XP/Vista/7) How it will look - Mac (OS X 10.4 or later) How it will look - iphone How it will look - ipad How to download - PC (Windows

More information

itunes What Is It? What Does it Do?

itunes What Is It? What Does it Do? Slide 1 itunes What Is It? What Does it Do? SUMMERSET COMPUTER CLUB JEFF HENSEL APRIL 9, 2015 WWWSSCCB.WORDPRES S.COM I ve been using itunes since I it came out. The itunes Store, originally the itunes

More information

User Manual. Copyright Thursby Software Systems, Inc. February 2015 Revision 4

User Manual. Copyright Thursby Software Systems, Inc. February 2015 Revision 4 PKard Reader User Manual Copyright 2012-2015 Thursby Software Systems, Inc. February 2015 Revision 4 Description PKard Reader (app) is a mobile web browser that enables smart card authentication. PKard

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Pictello (ipad, iphone and ipod touch). In this tutorial you will learn how to create, save and restore Pictello library backups with itunes File Sharing

More information

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list.

STEP 1 STEP 2 STEP 3 STEP 4 You may see the following. Then click OK. information on your screen: Click on the more apps to expand the list. Using Adobe Flash Software The S.T.A.B.L.E. Program Learner Course PowerPoint slides are packaged with Adobe Flash and will play using a Flash Player. This means you do not have to have PowerPoint installed

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Proloquo2Go (ipad, iphone and ipod touch). In this tutorial you will learn how to create, export and import backups with itunes File Sharing using the

More information

HO-FL1: INTRODUCTION TO FLASH

HO-FL1: INTRODUCTION TO FLASH HO-FL1: INTRODUCTION TO FLASH Introduction Flash is software authoring package for creating scalable, interactive animations (or movies) for inclusion in web pages. It can be used to create animated graphics,

More information

Quick Start Guide. Getting Started. Controls and Connections. Before you begin, please make sure that you have the following available:

Quick Start Guide. Getting Started. Controls and Connections. Before you begin, please make sure that you have the following available: Quick Start Guide Getting Started Before you begin, please make sure that you have the following available: A computer network with 2.4GHz WiFi or Ethernet One of the following devices: An Apple iphone,

More information

Summer Holiday ipad MOT

Summer Holiday ipad MOT Summer Holiday ipad MOT Dear Pupils, So, another academic year has finished. In order to keep your ipad in tip-top working condition, below is a quick list of things to run through to check. Please run

More information

OS 10.9 Mavericks. ApplePickers November 13, 2013

OS 10.9 Mavericks. ApplePickers November 13, 2013 OS 10.9 Mavericks ApplePickers November 13, 2013 Availability Available since Oct. 22 Should work on most Intel Mac sold since 2007 those running Snow Leopard or later FREE!! upgrade Finder Tabs Finder

More information

Lexar Media Manager User Guide

Lexar Media Manager User Guide Lexar Media Manager User Guide Lexar Media Manager User Guide Lexar Media Manager app overview...2 Setting up the Lexar Mobile Manager app...3 Navigating the Home screen...5 Navigating the Settings screen...7

More information

Ringling College ShareLink Devices

Ringling College ShareLink Devices Ringling College ShareLink Devices Accessing the Device from a Mac or PC Laptop 1. Turn on the monitor in the room 2. You should see a welcome screen similar to the one shown below Figure 1- ShareLink

More information

EQ Showroom App Setup & Instructions

EQ Showroom App Setup & Instructions EQ Showroom App Setup & Instructions Overview EQ Showroom brings your EQ product database to your mobile device. You can search across all catalogues, browse an individual catalogue, view product details,

More information

ADOBE 9A Adobe Dreamweaver CS4 ACE.

ADOBE 9A Adobe Dreamweaver CS4 ACE. ADOBE 9A0-090 Adobe Dreamweaver CS4 ACE http://killexams.com/exam-detail/9a0-090 ,D QUESTION: 74 You use an image throughout your Web site. You want to be able to add this image to various Web pages without

More information

Password & Tutorials Packet

Password & Tutorials Packet & Tutorials Packet Print, staple, and use this & Tutorials Packet Sign up for Secure Backup Service: visit rowleyservices.com for a free trial & setup info Follow attached: Check iphone Camera Settings

More information

Downloading Library Audiobooks for. Transfer to the ipod/ipad/iphone

Downloading Library Audiobooks for. Transfer to the ipod/ipad/iphone Downloading Library Audiobooks for Transfer to the ipod/ipad/iphone Overview Downloading Library Audiobooks for transfer to an ipod/ipad/iphone device is divided into six major parts. The first two parts

More information

Use Wallet on your iphone or ipod touch

Use Wallet on your iphone or ipod touch Use Wallet on your iphone or ipod touch With Wallet, you can keep your credit, debit, and prepaid cards, store cards, boarding passes, movie tickets, coupons, rewards cards, and more in one place. With

More information

USING SOUNDMINER V4PRO - V4.5

USING SOUNDMINER V4PRO - V4.5 F V T E C H D O C USING SOUNDMINER V4PRO V4.5 So you re looking for some sound effects for your movie... Here is an introduction to using Soundminer, which will help you navigate our sound effects library

More information

User Manual Version 1.0

User Manual Version 1.0 User Manual Version 1.0 Copyright 2013 DELTA Electronics, Inc. All rights reserved. Page 1 Table of Contents 1. GETTING STARTED... 3 1.1 Key features... 3 1.2 Modes of operation... 3 1.2.1 Stand-alone

More information

Inserting multimedia objects in Dreamweaver

Inserting multimedia objects in Dreamweaver Inserting multimedia objects in Dreamweaver To insert a multimedia object in a page, do one of the following: Place the insertion point in the Document window where you want to insert the object, then

More information

Bloomfield Hills Schools - ipad Pilot Setup

Bloomfield Hills Schools - ipad Pilot Setup itunes Setup This process will prepare itunes on your syncing computer. Your syncing computer, for the most part, will be your teacher computer and will be where you plug your student ipads in to install

More information

Downloading ebooks and eaudiobooks

Downloading ebooks and eaudiobooks Before You Start To get started, you will need access to the following items: A fully charged ipad, iphone, or ipod Touch A WiFi connection A Lake Bluff Library Card (or a card from another library that

More information

Documentation for Flash Project

Documentation for Flash Project Documentation for Flash Project JOU 4341 and MMC 4946 / Fall 2005 You will build at least six Flash pages, or screens, to create an online story with photos, text and audio. The story will have a cover

More information

Intelli-Signage Signage Designer Software

Intelli-Signage Signage Designer Software Intelli-Signage (User Manual V1.0) version: V3.0.0.0 Contents 1. Introduction... 1 2. System requirement... 1 2.1 Signage Player Software... 1 2.2... 1 3. Installation/Uninstallation of... 2 4. interface...

More information

ADDRESS BOOK. 4. Through Apple MAIL -- This option will be addressed in a different handout.

ADDRESS BOOK. 4. Through Apple MAIL -- This option will be addressed in a different handout. CREATING A NEW RECORD 1. Select "New Card" from the "File" menu. ADDRESS BOOK OR 2. Click the "+" icon below the "Name" column OR 3. Press Command - N on your keyboard 4. Through Apple MAIL -- This option

More information

Adobe Premiere Elements 9

Adobe Premiere Elements 9 Adobe Premiere Elements 9 I will be showing you part of it. I will show how to add pictures, video(s), music, Titles and how to add a Picture on top of a video. It is the only program that does that. The

More information

Adobe Flash CS4 Part 2: Working with Symbols

Adobe Flash CS4 Part 2: Working with Symbols CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Flash CS4 Part 2: Working with Symbols Fall 2010, Version 1.0 Table of Contents Introduction...2 Downloading the Data Files...2

More information

Review and Evaluation with ScreenCorder 4

Review and Evaluation with ScreenCorder 4 Review and Evaluation with ScreenCorder 4 Section 1: Review and Evaluate your work for DiDA...2 What s required?...2 About ScreenCorder...2 Section 2: Using ScreenCorder...2 Step 1: Selecting your recording

More information

REMOVE TSUWIRELESS WIRELESS NETWORK 2 CONNECTING TO TSU_SECURE WIRELESS NETWORK 7 CONNECT TO TNSTATE.EDU USING MOBILE DEVICE 11

REMOVE TSUWIRELESS WIRELESS NETWORK 2 CONNECTING TO TSU_SECURE WIRELESS NETWORK 7 CONNECT TO TNSTATE.EDU  USING MOBILE DEVICE 11 REMOVE TSUWIRELESS WIRELESS NETWORK 2 APPLE MAC OS X VERSIONS 10.5 10.8 2 MICROSOFT WINDOWS 7 (ALSO WINDOWS VISTA) 3 APPLE IPHONE/APPLE IPAD - IOS 3 ANDROID PHONES 4 WINDOWS XP 5 CONNECTING TO TSU_SECURE

More information

User Manual Version

User Manual Version Next FlipBook Maker for Windows User Manual Version 2.5.10 1 Content Cover 1 Content 2 1. Import PDF fires or images 3 2. Setting, Template, Scene and Bookmark 5 3. Publish local flipbook 19 4. Publish

More information

Manual Delete Songs From Ipod Touch 4g Ios 6 >>>CLICK HERE<<<

Manual Delete Songs From Ipod Touch 4g Ios 6 >>>CLICK HERE<<< Manual Delete Songs From Ipod Touch 4g Ios 6 Q: Okay so I can't delete songs from my ipod touch 5th generation that I You can only delete this way if you have selected to manually manage music. That seems

More information

Can't Add Songs To Iphone From Itunes 11 >>>CLICK HERE<<<

Can't Add Songs To Iphone From Itunes 11 >>>CLICK HERE<<< Can't Add Songs To Iphone From Itunes 11 Plug in your iphone or ipad running ios 8 or higher and launch itunes. Even for my ipod touch, for which I have a 64GB, I have to add genres one by Make sure you

More information

Puffin Academy User Guide

Puffin Academy User Guide Puffin Academy (from CloudMosa, Inc.) is a fast and functional mobile web browser designed for K-12 students, parents and teachers. It is designed to enable use of Adobe Flash based educational web materials

More information

FileXChange Quick Reference

FileXChange Quick Reference FileXChange Quick Reference Ver 1.4 with hints on use of FileXChange for Mac the Mac software that communicates with your FileXChange for iphone FileXChange: why? It transforms your iphone and ipad into

More information

Use the Apple menu to change settings, get Mac OS X software, open recent items, and restart or shut down your computer.

Use the Apple menu to change settings, get Mac OS X software, open recent items, and restart or shut down your computer. Welcome to Mac OS X Aqua makes using your Mac easier than ever. Its color, depth, and motion guide you through your tasks, while the Finder and Dock provide easy access to your computer and network. Aqua

More information

The goal of this book is to teach you how to use Adobe Integrated

The goal of this book is to teach you how to use Adobe Integrated Clearing the AIR The goal of this book is to teach you how to use Adobe Integrated Runtime (AIR) to create desktop applications. You can use JavaScript or ActionScript to develop AIR applications, and

More information

MAC BASICS For MacBooks & imacs MacOS Mojave Part 5: WEB BROWSERS

MAC BASICS For MacBooks & imacs MacOS Mojave Part 5: WEB BROWSERS MAC BASICS For MacBooks & imacs MacOS Mojave 10.14.2 Part 5: WEB BROWSERS Nancy Hellekson January 15, 2019 1 WHAT IS THE INTERNET? ARPANET adopted TCP/IP on January 1, 1983, and from there researchers

More information

11 EDITING VIDEO. Lesson overview

11 EDITING VIDEO. Lesson overview 11 EDITING VIDEO Lesson overview In this lesson, you ll learn how to do the following: Create a video timeline in Photoshop. Add media to a video group in the Timeline panel. Add motion to still images.

More information

TunesKit for Windows User Help

TunesKit for Windows User Help TunesKit for Windows User Help Overview Introduction Key Features System Requirements Installation & Registration Install TunesKit for Windows Register TunesKit for Windows Screenshots Main Interface Converting

More information

The Timeline records the actions in each Frame. It also allows multiple independent images and actions through Layers.

The Timeline records the actions in each Frame. It also allows multiple independent images and actions through Layers. Using Flash to Create Animated Environments Objectives: Understand the capabilities of Flash Gain a general overview of features and tools Understand layers, text, graphics, animation and buttons Import

More information

Graphic. August 23 & 24, Design to. Improve. User

Graphic. August 23 & 24, Design to. Improve. User Graphic Design, UI/UX Design, and Visualization for elearningg August 23 & 24, 2012 601 Design Mobile First to Improve User Experience Phil Cowcill, Canadore College August 24, 2012 Email: Phil.Cowcill@canadorecollege.ca

More information

ARTISTRY SKIN ANALYZER. How to Export/Import Data from ASA 1.0 to ASA 2.0

ARTISTRY SKIN ANALYZER. How to Export/Import Data from ASA 1.0 to ASA 2.0 2018 ARTISTRY SKIN ANALYZER How to Export/Import Data from ASA 1.0 to ASA 2.0 ios Version STEP 1 Before you start with the data export/import, please make sure the following items are available, and you

More information

Wireless Image Utility Operating Guide

Wireless Image Utility Operating Guide For Wireless Image Utility Ver. 2.1 ios Application for NEC Projectors Wireless Image Utility Operating Guide NEC's Image Contents 1. Description of the Wireless Image Utility... 2 1-1. Features... 2 1-2.

More information