TakeMySelfie ios App Documentation

Size: px
Start display at page:

Download "TakeMySelfie ios App Documentation"

Transcription

1 TakeMySelfie ios App Documentation What is TakeMySelfie ios App? TakeMySelfie App allows a user to take his own picture from front camera. User can apply various photo effects to the front camera. Programmers can also add new effects without caring about user interface which is automatically generated. Features - Live Effects on front camera. The user gets a live preview of his photo with effects. - Easy to add custom effects for programmers. - User can share the photo via Mail, Twitter, Facebook etc. - User can save the photo to his phone. - Minimalist and simple UI. - ios 8 compatible. Version 1.1 changelog - Admob support - Modified UI for changing filters - Changing the camera mode Version 1.01 changelog - ios 8 compatibility Note: The project is updated to work with Xcode 6 and has some additional configuration which may not be read properly in Xocde 5 and may cause some problems. So its strongly recommended that you update your Xcode to version 6. Also screenshots in this document are not updated for Xcode 6 as Xcode 6 has undergone only slight UI changes. All these screenshots of Xcode 5 will still make sense. Anything particular about Xcode 6 is mentioned.

2 Tutorial for personalising TakeMySelfie ios App Requirements 1. A MAC OSX device (Macmini, Macbook Air, Macbook Pro, imac or Mac Pro) 2. Software requirements: Xcode (preferably Xcode 6 for ios 8 compatibility) 3. Technical Requirements: Basic knowledge of programming in Objective C and know how of using Xcode. This involves following steps 1. Install Xcode from AppStore 2. General App Configuration 3. Testing on Simulator 4. Testing on a Real Device* 5. Distributing your app to the App Store* *The last two steps involves a paid ios developer account which has a nominal annual fee. Step 1: Install Xcode from AppStore - Xcode is needed to open, customise and test any ios application source code. It is created by Apple and is a free MAC app. - Click here ( or directly launch the Mac App Store app and search for Xcode. Xcode is about 2-3 GB so it will take some time to download and install it. - Once you have installed Xcode, extract the source code zip and look for the TakeMySelfie.xcworkspace (white coloured icon and not the blue coloured named TakeMySelfie.xcodeproj) file inside TakeMySelfie folder it and open it. It will automatically open in Xcode. Step 2: General App Configuration 2.1 Xcode overview If you re comfortable with Xcode interface the you can jump to 2.2 else read the basics of Xcode by clicking on Help > Xcode overview 2.2 Changing the app name This is important when you want your app to be named something else. e.g. My Custom Selfie App Single click on the name of project at the top of Project Navigator (which is located on the leftmost side). The the project name will be highlighted and you can type the new name. Hit Enter. (Fig 1) Once you hit enter key, under the Activity Viewer, you ll be prompted to change name of some files. (Fig 2 A)

3 Fig 1 Fig 2

4 2.2.3 Uncheck two files named TakeMySelfie-Info.plist and TakeMySelfieTests-Info.plist (Fig 2 B) as we don t want to rename them. Press Rename. If this is first time you re renaming the app then you ll be prompted for Automatic Snapshots (Fig 2 C). Enable them. The selected files will be renamed. When the renaming is complete then screen D (Fig 2 D) appears with green checks for each replacement made and this dialog will auto close after sometime You may test whether your app has been renamed or not by following steps on Section 3: Testing on Device. 2.3 Changing the App Icon The project comes with default set of App Icons and your custom app may need to show your Logo as App Icon Go to the Project Inspector (command+1). In case your Project Inspector doesn t look like in Fig 3 then expose the contents of your project by clicking on the little arrow at the left of your project name. Similarly open TakeMySelfie folder and click Images.xcassets (Fig 3 A). In the panel just right to the Navigator Area (Fig 3 B) all image assets will be listed. Fig In that panel click AppIcon (Fig 3 B). In the Editor View (Fig 3 C) there will be 3 icons for different versions of iphone (retina and non retina display, ios 6 and ios 7) and purposes (App icon, Spotlight icon, Settings icon) ios app icon is square and you should get it designed by some designer or if you have the logo file then you can generate the app icons from online services like In that case your ios AppIcon will look good if your logo is already close to square in shape. Some other ios app generating web services are: All these services will generate icons of different sizes. You will need following sizes in PNG format. 58 x 58px 120 x 120px 80 x 80px 180 x 182px 97 x 97px

5 2.3.5 Once you've obtained icons in these sizes then its time to replace them. Open the folder where you have all icons for sizes mentioned above. Drag and drop on the appropriate tile in the Editor area (Fig 4). Tiles labelled as 1x will have the specified size. e.g. Tile labeled 1x under iphone 29pt will have AppIcon of size 29px. Tiles labelled as 2x will have AppIcon of double the size mentioned. e.g. Tile labelled 2x under iphone 29pt will have image having size 58px (29 x 2). In this case we have all our tiles labelled as 2x, so 29pt means 58px, 40pt means 80px and 60pt means 120px. Keep on doing this till you replace all icons. Fig You can view the changed app icon by following steps on Section 3: Testing on Device. Xcode 6 Note: You ll find an additional 3x variant of these icons and you will have to multiply the dimension with 3 in that case. 2.4 Changing Launch Image Launch Image is an image which shows when your app is loading. Duration depends on your app. but generally for light apps like this it displays for 1-5 seconds. If you don t set a launch image then a black screen is displayed and the user may think that your app is buggy or not functional. Its not a good practice to not have a launch image and of you re submitting your app to app store then its required. Changing a launch image is similar to changing App Icon. The bundle you get has default launch image set. Generally it can be your company logo you used in App Icon and your company name and/or app name Go to the Project Inspector (command+1). In case your Project Inspector doesn t look like in Fig 5 then expose the contents of your project by clicking on the little arrow at the left of your project name. Similarly open TakeMySelfie folder and click Images.xcassets (Fig 5 A). In the panel just right to the Navigator Area (Fig 5 B) all image assets will be listed In that panel click LaunchImage (Fig 5 B). In the Editor View (Fig 5 C) there will be 2 image tiles for different versions of iphone (3.5 inch iphone and 4 inch iphone).

6 2.4.3 ios launch image can be designed using the App Icon if you know to use any image editing software or you should get it designed by some designer. Fig You will need following sizes in PNG format. 640 x 960px 750 x 1334px 640 x 1136px 1242 x 2208px Once you've obtained images in these sizes then its time to replace them. Open the folder where you have all images for sizes mentioned above. Drag and drop on the appropriate tile in the Editor area (Fig 6). Again tiles labelled as 1x will have size 320 x 480px, 2x will have 640 x 960px and R4 stands for Retina 4 which has size 640px x 1136px. In this case we need the latter two You can view the changed launch image by following steps on Section 3: Testing on Device. Xcode 6 Note: You ll find an additional 3x variant of these icons and you will have to multiply the dimension with 3 in that case. Fig 6

7 2.5 Changing bundle ID If you wish to launch your app into app store then you have change the bundle ID of the app. Fig Click on the project icon (Fig 7 A) and on the right side project settings panel will open. Click on the info tab (Fig 7 B). A table will appear below and the second row has the bundle ID under value column (Fig 7 C). Double click to change it and hit command+s to save it Bundle ID is generally web-address-of-your-company-in-reverse-domain-notation + nameof-your-app. e.g. If your web address is and app name is Amazing Selfie App then bundle ID should be com.mobileexceltech.amazing-selfie-app without quotes. There should be no space in the name and each entity is separated by dot. This format is not required and website need not to exist, its just for the purpose of getting a unique ID for your app. If you don t have a company then you can also put your name in bundle ID. e.g. com.jamesanderson.amazing-selfie-app. 2.6 Customising the App behaviour Here we will discuss how to add a new filter to the app. This section is for ios developers only. This applications is configured to use the popular ios library for image manipulation named GPUImage. It has 125 in built filters which you can easily add to your app. Else you have to develop a custom filter and for that you must know basics of Computer Graphics and OPENGL. You can view all filters on GPUImage Github page. As of September 2014 the list of all filters is as follow:

8 Color Adjustments Image Processing Blending modes Visual Effects GPUImageBrightnessFilter GPUImageTransformFilter GPUImageChromaKeyBlendF ilter GPUImageExposureFilter GPUImageCropFilter GPUImageDissolveBlendFilte r GPUImagePixellateFilter GPUImagePolarPixellateFilter GPUImageContrastFilter GPUImageLanczosResamplin gfilter GPUImageMultiplyBlendFilter GPUImagePolkaDotFilter GPUImageSaturationFilter GPUImageSharpenFilter GPUImageAddBlendFilter GPUImageHalftoneFilter GPUImageGammaFilter GPUImageUnsharpMaskFilter GPUImageSubtractBlendFilter GPUImageCrosshatchFilter GPUImageLevelsFilter GPUImageGaussianBlurFilter GPUImageDivideBlendFilter GPUImageSketchFilter GPUImageColorMatrixFilter GPUImageBoxBlurFilter GPUImageOverlayBlendFilter GPUImageThresholdSketchFi lter GPUImageRGBFilter GPUImageSingleComponent GaussianBlurFilter GPUImageDarkenBlendFilter GPUImageToonFilter GPUImageHueFilter GPUImageGaussianSelective BlurFilter GPUImageLightenBlendFilter GPUImageSmoothToonFilter GPUImageToneCurveFilter GPUImageGaussianBlurPositi onfilter GPUImageColorBurnBlendFilt er GPUImageEmbossFilter GPUImageHighlightShadowFi lter GPUImageiOSBlurFilter GPUImageColorDodgeBlendF ilter GPUImagePosterizeFilter GPUImageLookupFilter GPUImageMedianFilter GPUImageScreenBlendFilter GPUImageSwirlFilter GPUImageAmatorkaFilter GPUImageBilateralFilter GPUImageExclusionBlendFilt er GPUImageMissEtikateFilter GPUImageTiltShiftFilter GPUImageDifferenceBlendFilt er GPUImageBulgeDistortionFilt er GPUImagePinchDistortionFilt er GPUImageSoftEleganceFilter GPUImage3x3ConvolutionFilt er GPUImageHardLightBlendFilt er GPUImageStretchDistortionFil ter GPUImageColorInvertFilter GPUImageSobelEdgeDetecti onfilter GPUImageSoftLightBlendFilte r GPUImageSphereRefractionF ilter GPUImageGrayscaleFilter GPUImagePrewittEdgeDetecti onfilter GPUImageAlphaBlendFilter GPUImageGlassSphereFilter GPUImageMonochromeFilter GPUImageThresholdEdgeDet ectionfilter GPUImageSourceOverBlendF ilter GPUImageVignetteFilter GPUImageFalseColorFilter GPUImageCannyEdgeDetecti onfilter GPUImageColorBurnBlendFilt er GPUImageKuwaharaFilter GPUImageHazeFilter GPUImageHarrisCornerDetec tionfilter GPUImageColorDodgeBlendF ilter GPUImageKuwaharaRadius3 Filter GPUImageSepiaFilter GPUImageNobleCornerDetec tionfilter GPUImageNormalBlendFilter GPUImagePerlinNoiseFilter GPUImageOpacityFilter GPUImageShiTomasiCornerD etectionfilter GPUImageColorBlendFilter GPUImageCGAColorspaceFil ter GPUImageSolidColorGenerat or GPUImageNonMaximumSupp ressionfilter GPUImageHueBlendFilter GPUImageMosaicFilter GPUImageLuminanceThresh oldfilter GPUImageXYDerivativeFilter GPUImageSaturationBlendFilt er GPUImageJFAVoronoiFilter GPUImageAdaptiveThreshold Filter GPUImageCrosshairGenerato r GPUImageLuminosityBlendFil ter GPUImageVoronoiConsumer Filter

9 Color Adjustments Image Processing Blending modes Visual Effects GPUImageAverageLuminanc ethresholdfilter GPUImageDilationFilter GPUImageLinearBurnBlendFil ter GPUImageHistogramFilter GPUImageRGBDilationFilter GPUImagePoissonBlendFilter GPUImageHistogramGenerat or GPUImageAverageColor GPUImageLuminosity GPUImageChromaKeyFilter GPUImageErosionFilter GPUImageRGBErosionFilter GPUImageOpeningFilter GPUImageRGBOpeningFilter GPUImageClosingFilter GPUImageMaskFilter GPUImageRGBClosingFilter GPUImageLocalBinaryPattern Filter GPUImageLowPassFilter GPUImageHighPassFilter GPUImageMotionDetector GPUImageHoughTransformLi nedetector GPUImageLineGenerator GPUImageMotionBlurFilter GPUImageZoomBlurFilter To start with adding a filter follow these steps: In the project navigator open Supporting Files folder under TakeMySelfie folder. Click Effects.plist file (Fig 8 A). In the right side you will se the contents of file. Basically its a holds key value pairs Click the root row at the top (Fig 8 B). You ll see a plus icon (Fig 8 C). Click it and a new row will be added at the top (Fig 8 D). Fill the details in key and value columns. Press tab to go to next value. The first value (i.e. the key value) should start with three digit number followed by a hyphen which is followed by the effect name. The second value can be any string with no spaces but it must end with a colon (:). In this case the key is 006-Sketch Effect and value is applyfilter7:. Fig 8

10

11 2.6.3 Go to ViewController.m file. Click the jump bar (Fig 9 A). Click -applyfilter5: in the jump bar to go to that function Filters through 1 to 5 i.e. applyfilter1 to applyfilter5 are single filter and so if you want to add a in built filter from GPUImage then you can use code from any of these filter functions. Copy contents of applyfilter5 (Fig 9 C) and rename the function to the name you gave in the value column in Effects.plist (applyfilter7 in this case, Fig 9 D). Fig Now as you can see in Fig 9 D we have to replace the filter effect and that can be done by replacing the Class name in the return statement (highlighted text in line 149 in Fig 9 D). It can be any name from the table of filters of GPUImage in the start of this section. In this case I have selected GPUImageSketchFilter which converts your image to a sketch version of yours.

12 2.6.6 Hit Save and run the project. You will see the new filter added at the end of filter list by following steps on Section 3: Testing on Device. Step 3: Testing on Device In Xcode we have simulator for testing things out but since this is a camera app and simulator don t have camera so you can t test this app inside a simulator and you have to test it on a real device.

13 For this you need a paid ios developer account (Sign up here: register/index.action). Remember for all the steps mentioned in this section you need an internet connection. Fig 10 B Fig 10 A 3.1 ADDING APPLE ID INTO XCODE (ONE TIME PROCESS) Go to Xcode > Preferences (or hit command+comma key) and click Accounts tab at the top (Fig 10 A) Now a popup will come asking you for your apple ID details. Provide your Apple ID and Password and click Add button (Fig 10 B). After some processing it will add your Apple ID to Xcode and you can view it in the left panel under Accounts tab in Organiser window (Fig 10 C). Fig 10 C

14 3.2 ADD YOUR DEVICE FOR TESTING IN XCODE (ONE TIME PROCESS) Go to your project configuration by clicking the Project icon in Project Navigator (Fig 10 D). Select general tab on the top of right panel and under identity section you ll see a team field which is set to none (Fig 10 E). Select your team from the dropdown (Fig 10 F). Fig 10 D, E, F, G Click the Fix Issue button under the dropdown and Xcode will then do a little processing and add necessary certificates to your Apple Account and also add them to Xcode (Fig 10 G). After sometime the warning of No code signing identity found disappears. Fig 10 H

15 3.2.3 Go to Window > Organiser (or hit shift+command+2) and Organiser window will open. Click devices tab at the top and if you have connected your device to mac device then it will be listed on the left side panel under Devices section (Fig 10 H) If you re testing with this device first time then you ll see a Use for Development button on the right side (Fig 10 H). Click the button A popup will come with a list of Apple Accounts added to Xcode. Select the checkbox on your account name (Fig 10 I) and click Choose (Fig 10 J). Fig 10 I, J 3.3 RUNNING YOUR APP Your device is now ready for testing. Your device must be connected to Mac. In Xcode toolbar select your device in the scheme menu (See Xcode layout at the end of this document). Click Run or hit command + R. Your device must be unlocked for any app to run on your device. 3.4 APP SCREENS Home Screen opens front camera. You can see 3 buttons. Middle one is to click a photo and camera button on left one flips the camera mode to front or back and coloured filter button on right show or hide the filter panel. Filter panel shows a list of filters which you can scroll horizontally by swiping left or right (Fig 11 C). Tap on a filter to activate it. Tap it again to remove it. You can see all in built filters in screens below (Fig 11 D to Fig 11 I) When you take a picture you are directed to another screen where you can: - Download image and save it to your Photo Album (It would ask to access photos in your camera you have allow the app to save the photo). - Retake the photo. Then you ll be sent back to previous screen. - Share the photo via various social channels or via mail.

16 Fig 11 A Fig 11 B Fig 11 C Fig 11 D Fig 11 E Fig 11 F

17 Fig 11 G Fig 11 H Fig 11 J Fig 11 K Fig 11 I

18 Step 5: Distributing your app to the App Store This is done through itunes Connect and Xcode. 5.1 itunes Connect A. Go to itunes Connect ( and log in using your paid ios Developer Account. B. Click on Manage your applications and click on the Add New App button. C. Fill the form and click on continue. (The SKU number is a unique number for Apple to identify your app, you can type whatever you want ex : mycompany2014iphoneappname). D. Then Select an Availability Date. E. If you set the date to the current day, the app will be released as soon as it gets approved. F. Then select your price tier. As an option you can also select specific stores. G. Press on continue. H. Complete this entire form and hit save. You can learn more about each field by hovering each help icon with your mouse. I. Then come back on your app and click on the ready to upload binary button. Your app status should switch to "Waiting for upload. 5.2 Distribute your app from Xcode A. Open your project in xcode. B. In the left menu select your project and go to the info tab. C. Enter the bundle identifier you entered at step C in the ios Dev Center. (Highlighted in red in Fig 17) D. Switch to the Build Settings tab. Click All tab below build settings tab. Change the code signing identity to ios Distribution (Fig 19). E. Click on Product (top bar) and choose archive. F. Once the archiving process is done wait for the organizer window to open. G. Click on validate first and follow each step. Xcode is going to verify the identity and your project settings. H. Once your app passed validation click on Distribute and select submit to the ios App Store. I. Follow each steps and once your app has been uploaded go to itunes connect and check the status of your app. It should be "Upload received". It will switch few minutes after to "Waiting for review". J. The average is usually 5 business days for an app to get approved/rejected. If your app is rejected please contact us at ( to get assistance. Be sure to include as much details as possible (Your project, The resolution center discussion, etc ).

19 Xcode Layout Guide For detailed information, open Xcode, goto Help > Xcode overview.

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29 I. Before Publishing 1. System requirements Requirements for ios App publishing using FlyingCatBuilder Mac running OS X version 10.9.4 or later Apple Development Account Enrollment in ios Developer Program

More information

Your First App Store Submission

Your First App Store Submission Your First App Store Submission Contents About Your First App Store Submission 4 At a Glance 5 Enroll in the Program 5 Provision Devices 5 Create an App Record in itunes Connect 5 Submit the App 6 Solve

More information

TIPS FOR USING OS X 10.8 MOUNTAIN LION

TIPS FOR USING OS X 10.8 MOUNTAIN LION Mac OS X Tutorial 10.8 Mountain Lion 1 TIPS FOR USING OS X 10.8 MOUNTAIN LION LAUNCHPAD Launchpad is an application launcher first introduced in OS X 10.7 Lion and improved upon in Mountain Lion. Launchpad

More information

Knappsack ios Build and Deployment Guide

Knappsack ios Build and Deployment Guide Knappsack ios Build and Deployment Guide So you want to build and deploy an ios application to Knappsack? This guide will help walk you through all the necessary steps for a successful build and deployment.

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

App Distribution Guide

App Distribution Guide App Distribution Guide Contents About App Distribution 10 At a Glance 11 Enroll in an Apple Developer Program to Distribute Your App 11 Generate Certificates and Register Your Devices 11 Add Store Capabilities

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Apple Newsstand. v 1.2 1/22

Apple Newsstand. v 1.2 1/22 Apple Newsstand v 1.2 1/22 Table of Contents Table of Contents What is Apple Newsstand? How do I make a Newsstand publication? How do I get my AppStore App into Newsstand? Notes for Submitting Newsstand

More information

PDF Expert for ipad User guide

PDF Expert for ipad User guide PDF Expert for ipad User guide 2011 Readdle Inc. 2 Contents Introduction Chapter 1: Copying documents to PDF Expert USB file transfer using itunes File Sharing Saving attachments from Mail and other ipad

More information

White Noise Help Guide for iphone, ipad, and Mac

White Noise Help Guide for iphone, ipad, and Mac White Noise Help Guide for iphone, ipad, and Mac Created by TMSOFT - www.tmsoft.com - 12/08/2011 White Noise allows you to create the perfect ambient sound environment for relaxation or sleep. This guide

More information

Apple - Purchasing and Deploying New Apps

Apple - Purchasing and Deploying New Apps Apple - Purchasing and Deploying New Apps These notes describe how you purchase and deploy apps to Apple Devices following the process below: Pages 1 & 2 Purchase the required Volume Licenses Action by

More information

Appointment Scheduler

Appointment Scheduler EZClaim Appointment Scheduler User Guide Last Update: 11/19/2008 Copyright 2008 EZClaim This page intentionally left blank Contents Contents... iii Getting Started... 5 System Requirements... 5 Installing

More information

Frog VLE Update. Latest Features and Enhancements. September 2014

Frog VLE Update. Latest Features and Enhancements. September 2014 1 Frog VLE Update Latest Features and Enhancements September 2014 2 Frog VLE Update: September 2014 Contents New Features Overview... 1 Enhancements Overview... 2 New Features... 3 Site Backgrounds...

More information

Communicator for Mac Help

Communicator for Mac Help Communicator for Mac Help About the ShoreTel Communicator Introduction to the ShoreTel Communicator for Mac ShoreTel Communicator elements Learn about the window layout, panels, icons, buttons and notifications

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Site Administrator Guide

Site Administrator Guide Site Administrator Guide Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information

Teacher References archived classes and resources

Teacher References archived classes and resources Archived Classes At the end of each school year, the past year s academic classes are archived, meaning they re still kept in finalsite, but are put in an inactive state and are not accessible by students.

More information

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9

INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 Contents Contents INTRODUCTION 5 COLLABORATION RIBBON 5 SELECT THE UPDATING METHOD 6 MAKE YOUR PROJECT COLLABORATIVE 8 PROCESSING RECEIVED TASK UPDATES 9 IMPORT UPDATES 12 CUSTOM TEXT FIELDS MAPPING 13

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

By Global Delight. Voila Screen Capture For Mac 1

By Global Delight. Voila Screen Capture For Mac 1 Voila Screen Capture For Mac By Global Delight Voila Screen Capture For Mac 1 Table Of Contents I. General Information...3 1. Product Overview...3 2. Target Market...3 3. Pricing & Availability...4 4.

More information

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved.

Reference Guide TEAM. Pogoplug Team. Reference Guide. 2012 Cloud Engines Inc., All Rights Reserved. Reference Guide Pogoplug Team Reference Guide Table of Contents Table of Contents 1. What s Included 2. Getting Started 3. Customizing the Pogoplug Interface a. Custom UI b. Custom Domain Name c. Custom

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

Adobe Marketing Cloud Bloodhound for Mac 3.0

Adobe Marketing Cloud Bloodhound for Mac 3.0 Adobe Marketing Cloud Bloodhound for Mac 3.0 Contents Adobe Bloodhound for Mac 3.x for OSX...3 Getting Started...4 Processing Rules Mapping...6 Enable SSL...7 View Hits...8 Save Hits into a Test...9 Compare

More information

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac Create an ios App using Adobe Flash And without using a Mac Contents 1 Become an Apple ios Developer... 2 2 Add a Development Certificate... 4 3 Create a Certificate Signing Request (CSR)... 6 4 Register

More information

Welcome to Bridgit @ CSU The Software Used To Data Conference.

Welcome to Bridgit @ CSU The Software Used To Data Conference. Welcome to Bridgit @ CSU The Software Used To Data Conference. Overview SMART Bridgit software is a client/server application that lets you share programs and information with anyone, anywhere in the world.

More information

What's it Called on my Mac?

What's it Called on my Mac? What's it Called on my Mac? Windows Term Mac Term Use Close button Close button To close a window, click the red leftmost button in the upper-left corner of a window. Control key Command key To perform

More information

Personal Cloud. Support Guide for Mobile Apple Devices

Personal Cloud. Support Guide for Mobile Apple Devices Personal Cloud Support Guide for Mobile Apple Devices Storing and sharing your content 2 Getting started 2 How to use the application 2 Managing your content 2 Adding content manually 2 Downloading files

More information

Introduction to Windows 8

Introduction to Windows 8 Introduction to Windows 8 Windows 8 is a completely redesigned operating system developed from the ground up with touchscreen use in mind as well as near instant-on capabilities that enable a Windows 8

More information

Web Ambassador Training on the CMS

Web Ambassador Training on the CMS Web Ambassador Training on the CMS Learning Objectives Upon completion of this training, participants will be able to: Describe what is a CMS and how to login Upload files and images Organize content Create

More information

FAMILY. Reference Guide. Pogoplug Family. Reference Guide. 2012 Cloud Engines, Inc. All Rights Reserved.

FAMILY. Reference Guide. Pogoplug Family. Reference Guide. 2012 Cloud Engines, Inc. All Rights Reserved. Reference Guide Pogoplug Family Reference Guide Table of Contents Table of Contents 1. What s Included 2. Setting Up Your Pogoplug Device 3. Back Up a. Backing Up Your Computers b. Backing Up Your Mobile

More information

ipad Basics Tips from the October 16, 2014 ipad Basics Class Tip No. 1 Apple ID Where is it found? Settings>iCloud>Apple ID

ipad Basics Tips from the October 16, 2014 ipad Basics Class Tip No. 1 Apple ID Where is it found? Settings>iCloud>Apple ID ipad Basics Tips from the October 16, 2014 ipad Basics Class Tip No. 1 Apple ID Where is it found? Settings>iCloud>Apple ID 1 2 At the ipad home screen tap on the Settings tab. Now tap on the icloud file

More information

Windows 10: A Beginner s Guide

Windows 10: A Beginner s Guide Windows 10: A Beginner s Guide Copyright 2014 Conceptual Kings. All are rights reserved. This book or any portion thereof may not be reproduced or used in any manner whatsoever without the express written

More information

Microsoft Office Access 2007 Basics

Microsoft Office Access 2007 Basics Access(ing) A Database Project PRESENTED BY THE TECHNOLOGY TRAINERS OF THE MONROE COUNTY LIBRARY SYSTEM EMAIL: TRAININGLAB@MONROE.LIB.MI.US MONROE COUNTY LIBRARY SYSTEM 734-241-5770 1 840 SOUTH ROESSLER

More information

GET INTO OFFICE 365: OneDrive for Business Guide

GET INTO OFFICE 365: OneDrive for Business Guide GET INTO : OneDrive for Business Guide Your classroom resources online, anywhere at any time. This guide will introduce you to OneDrive for Business, which is part of the Office 365 offering provided by

More information

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

CONTENTS PAGE. c) Our Recommended Settings... 14. d) Overview...7. i. Check Out and Download a book... 27

CONTENTS PAGE. c) Our Recommended Settings... 14. d) Overview...7. i. Check Out and Download a book... 27 USER GUIDE CONTENTS PAGE Top Tip: Hold down the Ctrl key on your keyboard and using your mouse click on the heading below to be taken to the page Introduction... 3 1. How to create a new account... 3 2.

More information

Appendix 1 Install RightNow on your PC

Appendix 1 Install RightNow on your PC Appendix 1 Install RightNow on your PC Please do not install the live site unless you have been instructed to do so. 1 Open Internet Explorer and navigate to; http://student.ask.adelaide.edu.au/cgi-bin/adelaide.cfg/php/admin/launch.php

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

How to Configure Windows 8.1 to run ereports on IE11

How to Configure Windows 8.1 to run ereports on IE11 How to Configure Windows 8.1 to run ereports on IE11 Description: Windows 8.1 ships with IE10, but can be updated to IE11. There is a special mode in IE11 called Enterprise Mode that can be used to emulate

More information

GoodReader User Guide. Version 1.0 GoodReader version 3.16.0

GoodReader User Guide. Version 1.0 GoodReader version 3.16.0 GoodReader User Guide Version 1.0 GoodReader version 3.16.0 Contents Operating GoodReader 1 Send PDF files to Your ipad 2 Copy Files with itunes 2 Copy Files to a Cloud Service 5 Download Files from the

More information

TABLE OF CONTENTS SURUDESIGNER YEARBOOK TUTORIAL. IMPORTANT: How to search this Tutorial for the exact topic you need.

TABLE OF CONTENTS SURUDESIGNER YEARBOOK TUTORIAL. IMPORTANT: How to search this Tutorial for the exact topic you need. SURUDESIGNER YEARBOOK TUTORIAL TABLE OF CONTENTS INTRODUCTION Download, Layout, Getting Started... p. 1-5 COVER/FRONT PAGE Text, Text Editing, Adding Images, Background... p. 6-11 CLASS PAGE Layout, Photo

More information

Macs are not directly compatible with Noetix.

Macs are not directly compatible with Noetix. Those that use Macintosh computers to access Noetix cannot directly access Noetix through http://www.sandiego.edu/noetix. If one is on a Mac and goes to Noetix directly in a web browser, the page is likely

More information

How To Use Senior Systems Cloud Services

How To Use Senior Systems Cloud Services Senior Systems Cloud Services In this guide... Senior Systems Cloud Services 1 Cloud Services User Guide 2 Working In Your Cloud Environment 3 Cloud Profile Management Tool 6 How To Save Files 8 How To

More information

PlanGrid. User Guide. www.plangrid.com support@plangrid.com

PlanGrid. User Guide. www.plangrid.com support@plangrid.com PlanGrid User Guide www.plangrid.com support@plangrid.com Table of Contents Create a New Project Connecting Cloud Storage Partial Downloading ios Web Viewer and Web Markups Viewing Markups on your device

More information

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8

Gauge Drawing Tool... 8. Slider Drawing Tool... 8. Toggle Button Drawing Tool... 8. One-Way List Drawing Tool... 8 v. 20120510 Table of Contents RTiPanel Overview and Requirements... 3 Software Requirements:... 3 Hardware Requirements:... 3 Network Requirements:... 3 Licensing Requirements:... 4 Basic Integration Designer

More information

Using Application Loader

Using Application Loader !!! Using Application Loader!!!!!!!!!!! apple!!!!!!! Contents Introduction 4 What s New 4 Organization of This Document 4 Getting Additional Information 5 Getting Started 6 What is Application Loader?

More information

Managing Existing Mobile Apps

Managing Existing Mobile Apps Adobe Summit 2016 Lab 324: Managing Existing Mobile Apps Adobe Experience Manager Mobile 1 Table of Contents INTRODUCTION 4 GOAL 4 OBJECTIVES 4 MODULE 1 AEM INTRODUCTION 5 LESSON 1 - AEM BASICS 5 OVERVIEW

More information

Apps for Android. Apps for iphone & ipad INS584-3

Apps for Android. Apps for iphone & ipad INS584-3 Apps for iphone & ipad INS584-3 Apps for Android Android is a trademark of Google Inc. iphone is a trademark of Apple Inc., registered in the U.S. and other countries. ipad is a trademark of Apple Inc.,

More information

Getting Started. Version 3.1 Last updated 2014/3/10. Orbweb ME: Getting Started

Getting Started. Version 3.1 Last updated 2014/3/10. Orbweb ME: Getting Started Information in this document is subject to change without notice. Companies, names, and data used in examples herein are fictitious unless otherwise noted. No part of this document may be reproduced or

More information

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage

Document OwnCloud Collaboration Server (DOCS) User Manual. How to Access Document Storage Document OwnCloud Collaboration Server (DOCS) User Manual How to Access Document Storage You can connect to your Document OwnCloud Collaboration Server (DOCS) using any web browser. Server can be accessed

More information

PDF Expert Enterprise User guide

PDF Expert Enterprise User guide PDF Expert Enterprise User guide 2012 Readdle Inc. 2 INTRODUCTION 3 CHAPTER 1: DOCUMENT VIEWING AND MANAGING IN PDF EXPERT ENTERPRISE 4 Reading and working with PDF documents 4 Managing files and folders

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements

Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements Tutorial: Configuring GOOSE in MiCOM S1 Studio 1. Requirements - Two (2) MiCOM Px4x IEDs with Version 2 implementation of IEC 61850 - Two (2) Cat 5E Ethernet cable - An Ethernet switch 10/100 Mbps - MiCOM

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents:

Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk. Table of Contents: Apple Mac Fundamentals: A Tutorial. Updated 24/4/2013 By Mac Thing enquiries@macthing.co.uk http://www.macthing.co.uk Table of Contents: 1) The Macintosh HD 2) Your Home Directory 3) The Finder 4) The

More information

Skype for Business. User Guide. Contents

Skype for Business. User Guide. Contents Skype for Business User Guide Contents What is Skype for Business... 2 Accessing Skype for Business... 2 Starting Skype for Business for the first time... 2 Subsequent access to Skype for Business... 3

More information

Table of Contents. Vu ipad. v2.6. Navigation. Document Manager. Sync Manager. File Access. Field Verification Measurements. Markups List.

Table of Contents. Vu ipad. v2.6. Navigation. Document Manager. Sync Manager. File Access. Field Verification Measurements. Markups List. Table of Contents Navigation Document Manager Sync Manager File Access Field Verification Measurements Markups List Forms Studio Sessions Studio Projects Preferences Vu ipad v2.6 Navigation Panels There

More information

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

Chronicle USER MANUAL

Chronicle USER MANUAL Chronicle USER MANUAL 1st Edition 2 IN THIS MANUAL Part One The Chronicle Interface The Overview Screen The Bill Detail Screen Part Two Creating, Editing and Viewing Bills Creating Your First Bill Editing

More information

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office

Hands-on Guide. FileMaker Pro. Using FileMaker Pro with Microsoft Office Hands-on Guide FileMaker Pro Using FileMaker Pro with Microsoft Office Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker Pro and Microsoft Excel... 5 Drag and

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

Getting to know your ipad For Beginners

Getting to know your ipad For Beginners Getting to know your ipad For Beginners In this guide you will learn how to: o Switch your device on/off. o Tap, swipe, and pinch to navigate your device. o Secure your device set a password. o Change

More information

Foxit MobilePDF for ios Quick Guide

Foxit MobilePDF for ios Quick Guide for ios 1 Contents Chapter 1 Description... 3 Chapter 2 Main Menu... 5 Chapter 3 File Management... 7 Chapter 4 Viewing PDF Files... 8 Chapter 5 Annotation... 13 Chapter 6 Signatures... 18 Chapter 7 Text

More information

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business

Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business 2015 Managing your Joomla! 3 Content Management System (CMS) Website Websites For Small Business This manual will take you through all the areas that you are likely to use in order to maintain, update

More information

Form Builder Manual. A brief overview of your website s Form Builder with screenshots.

Form Builder Manual. A brief overview of your website s Form Builder with screenshots. A brief overview of your website s with screenshots. 1 Table of Contents:...1...3 Creating a New Web Form...4 Editing a Form Element...7 Creating a Form Action...9 Adding a Form Layout to an Action...11

More information

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen...

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen... 1 P a g e Table of Contents 1. Application Overview... 3 2. System Requirements... 3 3. Installation... 3 4. Splash Screen... 4 5. Registration Screen... 5 5.1 Registration... 5 6. Login Screen... 7 6.1

More information

How to create buttons and navigation bars

How to create buttons and navigation bars How to create buttons and navigation bars Adobe Fireworks CS3 enables you to design the look and functionality of buttons, including links and rollover features. After you export these buttons from Fireworks,

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Salesforce Classic Guide for iphone

Salesforce Classic Guide for iphone Salesforce Classic Guide for iphone Version 37.0, Summer 16 @salesforcedocs Last updated: July 12, 2016 Copyright 2000 2016 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

SMART Ink 1.5. Windows operating systems. Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device.

SMART Ink 1.5. Windows operating systems. Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device. SMART Ink 1.5 Windows operating systems User s guide Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device. Trademark notice SMART Ink, SMART Notebook, SMART

More information

owncloud Configuration and Usage Guide

owncloud Configuration and Usage Guide owncloud Configuration and Usage Guide This guide will assist you with configuring and using YSUʼs Cloud Data storage solution (owncloud). The setup instructions will include how to navigate the web interface,

More information

Getting Started Guide. November 25, 2013

Getting Started Guide. November 25, 2013 Getting Started Guide November 25, 2013 Getting Started Guide Chapters 1. Scheduling Meetings Configuring Meeting Details Advanced Options Invitation Email, received by the Participants Invitation Email,

More information

Setting up RDP on your ipad

Setting up RDP on your ipad This document will show you how to set up RDP (Remote Desktop Protocol) on your ipad. It will cover the following: Step 1: Creating an itunes account (if necessary) Step 2: Using the App Store Step 3:

More information

Ansur Test Executive. Users Manual

Ansur Test Executive. Users Manual Ansur Test Executive Users Manual April 2008 2008 Fluke Corporation, All rights reserved. All product names are trademarks of their respective companies Table of Contents 1 Introducing Ansur... 4 1.1 About

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

To Begin Customize Office

To Begin Customize Office To Begin Customize Office Each of us needs to set up a work environment that is comfortable and meets our individual needs. As you work with Office 2007, you may choose to modify the options that are available.

More information

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012

SAP Business Intelligence (BI) Reporting Training for MM. General Navigation. Rick Heckman PASSHE 1/31/2012 2012 SAP Business Intelligence (BI) Reporting Training for MM General Navigation Rick Heckman PASSHE 1/31/2012 Page 1 Contents Types of MM BI Reports... 4 Portal Access... 5 Variable Entry Screen... 5

More information

Microsoft Access 2007 Introduction

Microsoft Access 2007 Introduction Microsoft Access 2007 Introduction Access is the database management system in Microsoft Office. A database is an organized collection of facts about a particular subject. Examples of databases are an

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

T4 Site Manager for website moderators

T4 Site Manager for website moderators T4 Site Manager for website moderators (Moderator role only) Practical workbook University of Bristol IT Services document its-t4sm-2t. Updated on 10/03/2016 Introduction Is this guide for me? The overall

More information

Table of Contents. What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps.

Table of Contents. What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps. The Beginners Guide Table of Contents 03 04 05 06 34 35 What is ProSite? What is Behance? How do ProSite & Behance work together? Get Started in 6 Easy Steps See Live Examples Need More Help? What is ProSite?

More information

Arrk purple paper. ios App store submission guide. India. India

Arrk purple paper. ios App store submission guide. India. India Arrk purple paper ios App store submission guide A guide to preparing and submitting ios apps to the Apple itunes store. Andreas England (andreas.england@arrkgroup.com) 25 th June 2014 imagination technology

More information

Using the Jive for ios App

Using the Jive for ios App Using the Jive for ios App TOC 2 Contents App Overview...3 System Requirements... 4 Release Notes...5 Which Version Am I Using?... 6 Connecting to Your Community... 11 Getting Started...12 Using Your Inbox...13

More information

Frequently Asked Questions for the USA TODAY e-newspaper

Frequently Asked Questions for the USA TODAY e-newspaper Frequently Asked Questions for the USA TODAY e-newspaper Navigating the USA TODAY e-newspaper A look at the toolbar Toolbar Functions, Buttons, and Descriptions The tab marked Contents will take the e-reader

More information

Joomla! 2.5.x Training Manual

Joomla! 2.5.x Training Manual Joomla! 2.5.x Training Manual Joomla is an online content management system that keeps track of all content on your website including text, images, links, and documents. This manual includes several tutorials

More information

Module 1. 4 Login-Send Message to Teacher

Module 1. 4 Login-Send Message to Teacher Module 1. 4 Login-Send Message to Teacher Students, in this lesson you will 1. Learn to login to your InterAct account. 2. Learn how to send an email message. Logging on to Students Online 1. Launch the

More information

Basic Web Development @ Fullerton College

Basic Web Development @ Fullerton College Basic Web Development @ Fullerton College Introduction FC Net Accounts Obtaining Web Space Accessing your web space using MS FrontPage Accessing your web space using Macromedia Dreamweaver Accessing your

More information

Oatley PS BYOD ipad Important Information 2016

Oatley PS BYOD ipad Important Information 2016 T0echnological Specifications Students are invited to bring an ipad, ipad o an ipad Air to school next year. An ipad Mini will also be acceptable. The CONNECT.IT BYO Device requirements from the Department

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

Table of Contents. 1. Content Approval...1 EVALUATION COPY

Table of Contents. 1. Content Approval...1 EVALUATION COPY Table of Contents Table of Contents 1. Content Approval...1 Enabling Content Approval...1 Content Approval Workflows...4 Exercise 1: Enabling and Using SharePoint Content Approval...9 Exercise 2: Enabling

More information

OfficeSuite HD Meeting User Manual

OfficeSuite HD Meeting User Manual OfficeSuite HD Meeting User Manual Welcome to Broadview Networks OfficeSuite HD Meeting. Our service unifies cloud video conferencing, simple online meeting and mobile collaboration into one easy-to-use

More information

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365

What is OneDrive for Business at University of Greenwich? Accessing OneDrive from Office 365 This guide explains how to access and use the OneDrive for Business cloud based storage system and Microsoft Office Online suite of products via a web browser. What is OneDrive for Business at University

More information

Introducing Xcode Source Control

Introducing Xcode Source Control APPENDIX A Introducing Xcode Source Control What You ll Learn in This Appendix: u The source control features offered in Xcode u The language of source control systems u How to connect to remote Subversion

More information

Apple OS / ios Installation Guide Includes MAC OSx and ios based devices

Apple OS / ios Installation Guide Includes MAC OSx and ios based devices Apple OS / ios Installation Guide Includes MAC OSx and ios based devices Updated 8/10/2012 This page intentionally left blank Using SPOT on a Apple OS Device... 4 Summary... 4 Requirements... 4 Usage and

More information

Qualtrics Survey Tool

Qualtrics Survey Tool Qualtrics Survey Tool This page left blank intentionally. Table of Contents Overview... 5 Uses for Qualtrics Surveys:... 5 Accessing Qualtrics... 5 My Surveys Tab... 5 Survey Controls... 5 Creating New

More information

How To Create A Campaign On Facebook.Com

How To Create A Campaign On Facebook.Com Seriously powerful email marketing, made easy Table of Contents DOTMAILER QUICK START GUIDE... 3 Main Screen... 4 Getting Started... 6 STEP 1: CAMPAIGN SETTINGS... 7 STEP 2: CAMPAIGN CONTENT... 8 Editing

More information

Health Science Center AirWatch Installation and Enrollment Instructions For Apple ios 8 Devices

Health Science Center AirWatch Installation and Enrollment Instructions For Apple ios 8 Devices Health Science Center AirWatch Installation and Enrollment Instructions For Apple ios 8 Devices Following are the steps necessary to register and enroll an Apple ios 8 device with the University s AirWatch

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information