CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom

Size: px
Start display at page:

Download "CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom"

Transcription

1 CS3240 Human-Computer Interaction Lab Sheet Lab Session 4 Media, Ink, & Deep Zoom CS3240 Lab SEM /2010 Page 1

2 Overview In this lab, you will get familiarized with interactive media elements such as the MediaElement control, which is useful when manipulating video objects being embedded on the Silverlight application, and MultiScaleImage control, which is useful when displaying large image files which require a long time to download in order to display. Displaying video on the browser using MediaElement Control The MediaElement control is a very useful and easy to pick up control which can be really powerful if you make good use of it. It has many advanced features. Let s get started: 1. Open Microsoft Expression Blend 3, create a new Silverlight 3 Application + Website project as usual, and save it to a folder called tutorial4_media Set the [UserControl] and LayoutRoot layer s property width and height to 640px and 360px respectively. 2. Now, place a video file into the tutorial4_media\ tutorial4_media folder. Name the video file as samplevid (See figure 1) Figure 1: Place the samplevid file into the folder shown above For my case, my video file is a Windows Media Video file, so the extension is.wmv thus I will be referring to it as samplevid.wmv you should know your own video s file type. CS3240 Lab SEM /2010 Page 2

3 The following shows the list of video file types which can be supported by the MediaElement control: WMV1: Windows Media Video 7 WMV2: Windows Media Video 8 WMV3: Windows Media Video 9 WMVA: Windows Media Video Advanced Profile, non VC 1 WMVC1: Windows Media Video Advanced Profile, VC 1 3. Right click on the tutorial4_media which is located under the Project panel, under Solution tutorial4_media > select Add Existing Item (See figure 2) Figure 2: Select to add an existing item to the project 4. Browse to the folder directory where you store the samplevid file and select it. After selection, you will see it appearing on your project panel (See figure 3) Figure 3: After selection, the video file will be shown on the Project panel CS3240 Lab SEM /2010 Page 3

4 5. Go to the Assets panel to drag a MediaElement control and drop it on the design surface. Name it as vid. Click on it on the Object and Timeline panel, go to Properties panel and change its width and height to 640px and 360px respectively. (See figure 4) Figure 4: Set the width and height to 640 and 360 respectively 6. Now select the MediaElement and go to the Properties panel, under the Media section, select the Source to be the samplevid video file that you have added just now. (See figure 5) Figure 5: Select the Source to be the samplevid video file 7. Now press F5 to view the video on the browser (See figure 6) Figure 6: Viewing the video from the browser CS3240 Lab SEM /2010 Page 4

5 Creating basic video controls using MediaElement Control The basic controls for video are Play, Stop, and Pause. When you set the AutoPlay property of the MediaElement to false, these controls are necessary to start playing the video. Well, even if the AutoPlay property is set to true and the video starts playing automatically once user enter the page, the Stop and Pause control is still useful. 1. Continuing from the previous step, now use the Rectangle tool to create a rectangle of width 640px and height 35px, place it at the bottom of the MediaElement control. (See figure 7) Figure 7: See that the rectangle is placed at the bottom of the MediaElement control. 2. Now, create a TextBlock with width 91px and height 15px. Duplicate it so that there are three copies of it on the design surface; align them to have around 91px gap in between each other. Rename the TextBlock to Play, Stop, and Pause respectively, and set the Cursor value to Hand (See figure 8) Figure 8: Align the TextBlock & rename them accordingly to the figure shown above CS3240 Lab SEM /2010 Page 5

6 3. Now change the color of the rectangle to Black and under the Appearance panel, set its opacity to 50% ; and set the color of all the 3 TextBlocks to White. 4. Press F5 to view on browser. The design of the basic video controls is done, but it doesn t work yet because there is no event handler to handle the codes yet. Save the file. 5. Open the tutorial4_media solution in Microsoft Visual Studio 2008 now and open to edit the MainPage.xaml file. 6. Add in the following underlined codes to make use of the event handler to handle the Play, Stop, and Pause options provided for the video. <TextBlock MouseLeftButtonDown="doPlay" Text="Play" Height="15" HorizontalAlignment="Left" Margin="91,0,0,8" VerticalAlignment="Bottom" Width="91" TextAlignment="Center" TextWrapping="Wrap" Foreground="White" FontWeight="Bold" Cursor="Hand"/> <TextBlock MouseLeftButtonDown="doStop" Text="Stop" Height="15" Margin="273,0,276,8" VerticalAlignment="Bottom" TextAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="White" Cursor="Hand"/> <TextBlock MouseLeftButtonDown="doPause" Text="Pause" Height="15" HorizontalAlignment="Right" Margin="0,0,91,8" VerticalAlignment="Bottom" Width="91" TextAlignment="Center" TextWrapping="Wrap" FontWeight="Bold" Foreground="White" Cursor="Hand"/> 7. Now that you have the doplay, dostop, and dopause event being set in the MouseLeftButtonDown event of the 3 TextBlocks, right click on each of them and select Navigate to Event Handler The following codes should be generated in the MainPage.xaml.cs file after you selected all 3 and go to their event handler: private void doplay(object sender, MouseButtonEventArgs e) private void dostop(object sender, MouseButtonEventArgs e) private void dopause(object sender, MouseButtonEventArgs e) CS3240 Lab SEM /2010 Page 6

7 8. Now let s code the event handler, it is very simple. Just edit the codes according to the following codes: private void doplay(object sender, MouseButtonEventArgs e) vid.play(); private void dostop(object sender, MouseButtonEventArgs e) vid.stop(); private void dopause(object sender, MouseButtonEventArgs e) vid.pause(); 9. Now press F5 and go to the browser to test out the controls that you have created. (See figure 9) Figure 9: The basic video controls are working fine on the browser CS3240 Lab SEM /2010 Page 7

8 Introduction to MultiScaleImage Control Deep Zoom provides to the users a new and unique way to manage images in their applications. It is implemented in XAML by the MultiScaleImage element with which, as its name suggest; it enables the user to control the scale and zoom of your images. With Deep Zoom, users are able to provide super high resolution images on their applications without requiring the application users to download the full image before being able to display it. Creating Metadata using Deep Zoom Composer To create a basic application in which you zoom in and out of images, simply use the MultiScaleImage control and point it at the file that contains metadata about the images. To create the metadata file, use the Deep Zoom Composer, which you can download from the Microsoft Download Center. Let s get started: 1. Go to Start menu > Microsoft Expression > Deep Zoom Composer and open it. (See figure 10) Figure 10: Open the Deep Zoom Composer 2. Select to create a new project, Name it deepzoom_images and store it in the tutorial folder (where you stored all your tutorials so far) CS3240 Lab SEM /2010 Page 8

9 3. Now that you are in the Import tab, click on the Add image.. button on the right side of the Deep Zoom Composer window (See figure 11) Figure 11: Click on the Add image button 4. Add three images into it. I have added 3 of the sample images which are there in windows by default (See figure 12) Figure 12: Add 3 images into the Deep Zoom Composer 5. Now, click on the Compose tab. CS3240 Lab SEM /2010 Page 9

10 In this tab, it allows users to place and arrange images on the design surface, and then zoom in and out while placing other images. New images are placed at their default resolution at the zoom level 6. Place the first image on the design surface. Zoom in as much as you want and place the second image. Then, for the third image, do the same thing to zoom in and place the image inside the second image. (See figure 13 and 14) Figure 13: The 2nd image is placed inside the 1st image (circled), notice how deep I zoomed into Figure 14: Similarly, the 3rd image is placed inside the 2nd image (circled) 7. After the images are properly arranged, now is the time to move on to the Export tab. Simply make sure that the Custom tab is selected and select the Silverlight Deep Zoom project. Name it as tut4_dz and set the templates option to Blend 3 Behaviors + Source and leave it to be saved at its default location. (See figure 15) CS3240 Lab SEM /2010 Page 10

11 Figure 15: Set the Export options as according to above Note that if your Export button is grayed out, it means that the total number of pixels that existed in your Deep Zoom image output has exceeded the maximum of 4 billion pixels, to solve it, simply shrink your image size and import it into the composer again. 8. Click on the Export button and close the window when the exporting is done. CS3240 Lab SEM /2010 Page 11

12 Building a Deep Zoom Project 1. Open Microsoft Visual Studio and create a new project as usual, name the file tutorial4_deepzoom and store it in the same folder as the other tutorials. Click OK when prompted to host the Silverlight application in a new web site. Leave the settings as default. 2. Next, we need to add our exported images from DeepZoom Composer to the web project. Add a new folder under the ClientBin folder on the Web Project and call it GeneratedImages. The ClientBin folder is where the compiled.xap file from your Silverlight will live so this is the easiest place to put our exported files. Now go to the folder where you had stored your exported files from Deep Zoom Composer. Go inside the DeepZoomProjectSite\ClientBin\ folder and open up the GeneratedImages folder and you will see the following files (excluding scene.xml): dzc_output_files folder dzc_output_images folder dzc_output.xml Metadata.xml SparseImageSceneGraph.xml Drag and drop these files into the new GeneratedImages folder which you created in Visual Studio (figure 16 and figure 17). Figure 16: Drag the files from the folder directory CS3240 Lab SEM /2010 Page 12

13 Figure 17: Drop the files directly into the GeneratedImages folder in Visual Studio Your Solution Explorer should look something like the following figure 18: CS3240 Lab SEM /2010 Page 13

14 Figure 18: Solution Explorer should look something like the above 3. On the MainPage.xaml file, add the following one line of code inside the Grid layout container: <Grid x:name="layoutroot"> <MultiScaleImage x:name="msi" Source="/GeneratedImages/dzc_output.xml"/> </Grid> 4. Press F5 to run and you will realize that the mouse controls on panning and zooming on the image are all gone; reason being that the MultiScaleImage object doesn t have those effects being built on the MultiScaleImage. However, the DeepZoomProject solution that you generated from the Deep Zoom Composer previously does have these codes being generated for you. CS3240 Lab SEM /2010 Page 14

15 5. Go to File > Open > Project/Solution and browse to the deepzoom_images\exported Data\tut4_dz subfolder inside the folder where you always store your tutorial files. (See figure 19) Figure 19: Open the DeepZoomProject generated by the Deep Zoom Composer 6. Press F5 to run the Deep Zoom application (See figure 20) Figure 20: Run the DeepZoomProject Silverlight application to experience deep zoom and all the mouse panning and zooming features CS3240 Lab SEM /2010 Page 15

16 As mentioned before, the mouse effects including zooming and panning and dragging and etc, all these codes are being generated by Deep Zoom Composer, simply explore the C# files to learn more on how it actually works. The Solution Explorer should show the following figure 21: Figure 21: Solution Explorer of DeepZoomProject CS3240 Lab SEM /2010 Page 16

17 Experiencing inking feature using InkPresenter Inking is a very interesting feature that is available in Silverlight. You can create interesting Silverlight applications that you could use to perform the following: Draw ink strokes using a stylus or a mouse You can erase ink strokes Saving the ink and reloading them However, this tutorial is only going to touch on draw strokes using inking feature. For more information on the use of inks and sample code visit the site at: Let s get started with our sample application: 1. Open Microsoft Expression Blend 3 and create a new Silverlight 3 Application + Website project. Name is as tutorial4_inking and save it by pressing Ctrl+S. 2. Now go to the Assets panel and look for the InkPresenter control, drag and drop it to the design surface, name it as inkctrl and make both its width and height to be 300px. (See figure 22) Figure 22: Selecting the InkPresenter control 3. Select the LayoutRoot container and set its background color to Black. And also, set the background color of the InkPresenter to be Yellow (See figure 23) CS3240 Lab SEM /2010 Page 17

18 Figure 23: Setting the colors of the LayoutRoot container and the InkPresenter control Press F5 to run the application in the browser. You might try to scribble on the bright yellow surface of the InkPresenter but will notice that right now, you are not able to draw on the InkPresenter control. We need to write some simple code below to make that happen. The sample code for this application is shown below and has enough comments to make it self explanatory. Save the tutorial4_inking solution and open it in Microsoft Visual Studio Go to the MainPage.xaml.cs file, just type in the code as shown below: using System; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; namespace tutorial4_inking public partial class MainPage : UserControl //Stroke object initialized to null Stroke thestroke = null; public MainPage() InitializeComponent(); //inkctrl: name for InkPresenter control //Subscribe to the mouse events //Event used to create a new stroke mouse/stylus inkctrl.mouseleftbuttondown += new MouseButtonEventHandler(onMouseDown); //Event used to continue drawing inkctrl.mousemove += new MouseEventHandler(onMouseMove); //Event used to release the mouse so drawing stops inkctrl.mouseleftbuttonup += new MouseButtonEventHandler(onMouseUp); CS3240 Lab SEM /2010 Page 18

19 void onmousemove(object sender, MouseEventArgs e) //Check if stroke object is created. //Stroke object is created when the frst mouse click happens //in the onmousedown event if (thestroke!= null) //As you move the mouse the movement is registered //and the points are added to inkctrl thestroke.styluspoints.add(e.stylusdevice.getstyluspoints(inkctrl)); void onmouseup(object sender, MouseButtonEventArgs e) //Make the stroke as null so it deletes the //stroke object from memory thestroke = null; //Release the mouse from the inkctrl to prevent //any further drawing inkctrl.releasemousecapture(); void onmousedown(object sender, MouseButtonEventArgs e) //Check if stroke object exists in memory. //Initially when the program starts it shouldn't //or after the onmouseup event has occured. if (thestroke == null) //Let inkctrl have the mouse/stylus attached to it inkctrl.capturemouse(); //Create a new stroke object in memory //this will be used to draw when the mouse moves thestroke = new Stroke(); //the color of the stroke is given as Black. //You can give any color you want. thestroke.drawingattributes.color = Colors.Black; //Stroke width and height will be 13pixels thestroke.drawingattributes.width = 13.0; thestroke.drawingattributes.height = 13.0; //Generate the initial stroke and add it to the //inkctrl thestroke.styluspoints.add(e.stylusdevice.getstyluspoints(inkctrl)); //Add the stroke to the collection of strokes. //This is useful if you want to loop through the //strokes and save the strokes s X,Y points in a text file. inkctrl.strokes.add(thestroke); CS3240 Lab SEM /2010 Page 19

20 Now press F5 to try out the inking feature in silverlight application. (See figure24) Figure 24: Try out the inking feature of the Silverlight application Summary In the lab we have seen three important features in Silverlight Media, Deep Zoom and Inking. All these three are very important when it comes to building Rich Media Applications for the web. CS3240 Lab SEM /2010 Page 20

CS3240 Human-Computer Interaction

CS3240 Human-Computer Interaction CS3240 Human-Computer Interaction Lab Session 3 Supplement Creating a Picture Viewer Silverlight Application Page 1 Introduction This supplementary document is provided as a reference that showcases an

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 2

CS3240 Human-Computer Interaction Lab Sheet Lab Session 2 CS3240 Human-Computer Interaction Lab Sheet Lab Session 2 Key Features of Silverlight Page 1 Overview In this lab, you will get familiarized with the key features of Silverlight, such as layout containers,

More information

Lab 7: Silverlight API

Lab 7: Silverlight API Lab 7: Silverlight API Due Date: 02/07/2014 Overview Microsoft Silverlight is a development platform for creating engaging, interactive user experiences for Web, desktop, and mobile applications when online

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework

CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Human-Computer Interaction Lab Sheet Lab Session 5 Navigation Framework CS3240 Lab SEM 1 2009/2010 Page 1 Overview In this lab, students will familiarize themselves with creating and get to learn

More information

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration

CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration CS3240 Human-Computer Interaction Lab Sheet Lab Session 3 Designer & Developer Collaboration Page 1 Overview In this lab, users will get themselves familarise with fact that Expression Blend uses the identical

More information

Weather forecast ( part 2 )

Weather forecast ( part 2 ) Weather forecast ( part 2 ) In the first part of this tutorial, I have consumed two webservices and tested them in a Silverlight project. In the second part, I will create a user interface and use some

More information

RadPDFViewer For Silverlight and WPF

RadPDFViewer For Silverlight and WPF RadPDFViewer For Silverlight and WPF This tutorial will introduce the RadPDFViewer control, part of the Telerik suite of XAML controls Setting Up The Project To begin, open Visual Studio and click on the

More information

Week 6: First XAML Control Exercise

Week 6: First XAML Control Exercise BCIS 4650 Week 6: First XAML Control Exercise The controls you will use are: Blank App (Universal Windows), which contains a Grid control by default StackPanel (acts as a container for CheckBoxes and RadioButtons)

More information

Hands-On Lab. Hello Windows Phone

Hands-On Lab. Hello Windows Phone Hands-On Lab Hello Windows Phone Lab version: 1.1.0 Last updated: 12/8/2010 CONTENTS OVERVIEW... 3 EXERCISE 1: CREATING WINDOWS PHONE APPLICATIONS WITH MICROSOFT VISUAL STUDIO 2010 EXPRESS FOR WINDOWS

More information

CPSC 481 Tutorial 10 Expression Blend. Brennan Jones (based on tutorials by Bon Adriel Aseniero and David Ledo)

CPSC 481 Tutorial 10 Expression Blend. Brennan Jones (based on tutorials by Bon Adriel Aseniero and David Ledo) CPSC 481 Tutorial 10 Expression Blend Brennan Jones bdgjones@ucalgary.ca (based on tutorials by Bon Adriel Aseniero and David Ledo) Expression Blend Enables you to build rich and compelling applications

More information

While the press might have you believe that becoming a phoneapp

While the press might have you believe that becoming a phoneapp 2 Writing Your First Phone Application While the press might have you believe that becoming a phoneapp millionaire is a common occurrence, it s actually pretty rare, but that doesn t mean you won t want

More information

Weather forecast ( part 1 )

Weather forecast ( part 1 ) Weather forecast ( part 1 ) I will create a small application that offers the weather forecast for a certain city in the USA. I will consume two webservices for this. The first service will give me an

More information

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements?

How to...create a Video VBOX Gauge in Inkscape. So you want to create your own gauge? How about a transparent background for those text elements? BASIC GAUGE CREATION The Video VBox setup software is capable of using many different image formats for gauge backgrounds, static images, or logos, including Bitmaps, JPEGs, or PNG s. When the software

More information

OnPoint s Guide to MimioStudio 9

OnPoint s Guide to MimioStudio 9 1 OnPoint s Guide to MimioStudio 9 Getting started with MimioStudio 9 Mimio Studio 9 Notebook Overview.... 2 MimioStudio 9 Notebook...... 3 MimioStudio 9 ActivityWizard.. 4 MimioStudio 9 Tools Overview......

More information

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation. Copyright by V. Miszalok, last update:

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation. Copyright by V. Miszalok, last update: 1 Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C5: The Complete Code of PathAnimation Preliminaries Page.XAML Page.xaml.cs Copyright by V. Miszalok, last update: 30-01-2009 Install 1) Visual

More information

CPSC Tutorial 9 Blend & Animations

CPSC Tutorial 9 Blend & Animations CPSC 481 - Tutorial 9 Blend & Animations (based on previous tutorials by Alice Thudt, Fateme Rajabiyazdi, David Ledo, Brennan Jones, and Sowmya Somanath) Today Blend & Animations Using Blend Hands on example

More information

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide

MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Help - MPLAB Harmony Graphics Composer User's Guide MPLAB Harmony Integrated Software Framework v1.11 2013-2017 Microchip Technology Inc. All rights reserved. MPLAB Harmony Graphics Composer

More information

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide

Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Autodesk Fusion 360 Training: The Future of Making Things Attendee Guide Abstract After completing this workshop, you will have a basic understanding of editing 3D models using Autodesk Fusion 360 TM to

More information

ITP 101 Project 2 - Photoshop

ITP 101 Project 2 - Photoshop ITP 101 Project 2 - Photoshop Project Objectives Learn how to use an image editing application to create digital images. We will use Adobe Photoshop for this project. Project Details To continue the development

More information

13. Albums & Multi-Image Printing

13. Albums & Multi-Image Printing 13. Albums & Multi-Image Printing The Album function is a flexible layout and printing tool that can be used in a number of ways: Two kinds of albums: At left we used automatic mode to print a collection

More information

Using Blending Modes for Simple Color Correction

Using Blending Modes for Simple Color Correction Using Blending Modes for Simple Color Correction In a previous lesson, you were introduced to blending modes using the Brush Tool. Blending modes are also a powerful feature of the Layers Panel and can

More information

Step4: Now, Drag and drop the Textbox, Button and Text block from the Toolbox.

Step4: Now, Drag and drop the Textbox, Button and Text block from the Toolbox. Name of Experiment: Display the Unicode for the key-board characters. Exp No:WP4 Background: Student should have a basic knowledge of C#. Summary: After going through this experiment, the student is aware

More information

AGENDA. :: Homework Upload. :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: II. DRAWING SHAPES III.

AGENDA. :: Homework Upload. :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: II. DRAWING SHAPES III. CLASS :: 04 MULTIMEDIA TOOLS :: CLASS NOTES 10.02 2017 AGENDA :: Homework Upload [ A-2 ] Ultimate Composite! Upload A-2 Project to Student PSD Folder :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage]

More information

Silverlight Invaders Step 0: general overview The purpose of this tutorial is to create a small game like space invaders. The first thing we will do is set up the canvas of design some user controls (

More information

:: MULTIMEDIA TOOLS :: CLASS NOTES

:: MULTIMEDIA TOOLS :: CLASS NOTES CLASS :: 04 02.15 2017 AGENDA :: Homework Upload [ A-2 ] Ultimate Composite! Upload A-2 Project to Student PSD Folder :: Photoshop Lesson 4: Creating a PSD Wireframe [Homepage] I. DOCUMENT SET-UP: a. Dimensions

More information

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project

Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project 1 Course 2D_SL: 2D-Computer Graphics with Silverlight Chapter C1: The Intro Project Copyright by V. Miszalok, last update: 16-10-2008 Preliminaries Version 01: Page.XAML Version 02: Page.XAML Version 03:

More information

AHEAD application manual

AHEAD application manual AHEAD application manual Starting the application Make sure the PHANToM is initialized correctly by e.g. running the PHANToM test application. Start the drawing program. This will open a small command

More information

Silverlight 5 Using C#

Silverlight 5 Using C# Silverlight 5 Using C# Student Guide Revision 5.0 Object Innovations Course 4146 Silverlight 5 Using C# Rev. 5.0 Student Guide Information in this document is subject to change without notice. Companies,

More information

Introduction. Part I: Silverlight Fundamentals for ASP.NET Developers 1

Introduction. Part I: Silverlight Fundamentals for ASP.NET Developers 1 Introduction xxi Part I: Silverlight Fundamentals for ASP.NET Developers 1 Chapter 1: Silverlight in a Nutshell 3 Uphill Struggle 3 Rich Client or Web Reach? 4 Silverlight Steps In 4 The Impact of Silverlight

More information

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1

CS Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 CS 1033 Multimedia and Communications REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Lab 02: Introduction to Photoshop Part 1 Upon completion of this lab, you should be able to: Open, create new, save

More information

Graffiti Wallpaper Photoshop Tutorial

Graffiti Wallpaper Photoshop Tutorial Graffiti Wallpaper Photoshop Tutorial Adapted from http://photoshoptutorials.ws/photoshop-tutorials/drawing/create-your-own-graffiti-wallpaper-inphotoshop.html Step 1 - Create a New Document Choose File

More information

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145

sharpcorner.com/uploadfile/37db1d/4958/default.aspx?articleid=cb0b291c-52ae-4b80-a95c- 438d76fa1145 Navigation in Silverlight -3 1. Introduction: In previous article we learn to navigate to another Silverlight page without using navigation framework, which is new feature in Silverlight 3. Read it Here:

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

WEEK NO. 12 MICROSOFT EXCEL 2007 WEEK NO. 12 MICROSOFT EXCEL 2007 LESSONS OVERVIEW: GOODBYE CALCULATORS, HELLO SPREADSHEET! 1. The Excel Environment 2. Starting A Workbook 3. Modifying Columns, Rows, & Cells 4. Working with Worksheets

More information

Adobe PageMaker Tutorial

Adobe PageMaker Tutorial Tutorial Introduction This tutorial is designed to give you a basic understanding of Adobe PageMaker. The handout is designed for first-time users and will cover a few important basics. PageMaker is a

More information

Silverlight memory board ( Part 2 )

Silverlight memory board ( Part 2 ) Silverlight memory board ( Part 2 ) In the first part this tutorial we created a new Silverlight project and designed the user interface. In this part, we will add some code to the project to make the

More information

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

GIMP WEB 2.0 BUTTONS

GIMP WEB 2.0 BUTTONS GIMP WEB 2.0 BUTTONS Web 2.0 Navigation: Web 2.0 Button with Navigation Arrow GIMP is all about IT (Images and Text) WEB 2.0 NAVIGATION: BUTTONS_WITH_NAVIGATION_ARROW This button navigation will be designed

More information

Report Generator for DPOPWR

Report Generator for DPOPWR Online Help Report Generator for DPOPWR Adapted from the Report Generator for DPOPWR Online Help www.tektronix.com Copyright Tektroni x. All rights reserved. Licensed software products are owned by Tektronix

More information

Adobe Illustrator. Quick Start Guide

Adobe Illustrator. Quick Start Guide Adobe Illustrator Quick Start Guide 1 In this guide we will cover the basics of setting up an Illustrator file for use with the laser cutter in the InnovationStudio. We will also cover the creation of

More information

create 2 new grid lines

create 2 new grid lines STEP 1: open your class-01 Project file _ go to Level 1 _ select grid line 1 _ type CO (copy) _ repeat for grid line 3 as shown in image 1 Architectural Column STEP 2: from the Ribbon under the Home tab

More information

InDesign - Basic Spring Indesign. Setup a new document

InDesign - Basic Spring Indesign. Setup a new document 1/ 5 Indesign Desktop Publication software. It can be used to create posters, flyers, portfolios, books, presentation slides and etc... Tutorials: https://helpx.adobe.com/indesign/how-to/create-print-postcard-design.html?set=indesign--get-started

More information

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved.

FrontPage 98 Quick Guide. Copyright 2000 Peter Pappas. edteck press All rights reserved. Master web design skills with Microsoft FrontPage 98. This step-by-step guide uses over 40 full color close-up screen shots to clearly explain the fast and easy way to design a web site. Use edteck s QuickGuide

More information

Adobe InDesign CS6 Tutorial

Adobe InDesign CS6 Tutorial Adobe InDesign CS6 Tutorial Adobe InDesign CS6 is a page-layout software that takes print publishing and page design beyond current boundaries. InDesign is a desktop publishing program that incorporates

More information

GIMP WEB 2.0 ICONS. GIMP is all about IT (Images and Text) OPEN GIMP

GIMP WEB 2.0 ICONS. GIMP is all about IT (Images and Text) OPEN GIMP GIMP WEB 2.0 ICONS Web 2.0 Banners: Download E-Book WEB 2.0 ICONS: DOWNLOAD E-BOOK OPEN GIMP GIMP is all about IT (Images and Text) Step 1: To begin a new GIMP project, from the Menu Bar, select File New.

More information

Drawing shapes and lines

Drawing shapes and lines Fine F Fi i Handmade H d d Ch Chocolates l Hours Mon Sat 10am 6pm In this demonstration of Adobe Illustrator CS6, you will be introduced to new and exciting application features, like gradients on a stroke

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : 70-357 Title : Developing Mobile Apps Version :

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

Chapter 1: Quick Start

Chapter 1: Quick Start This chapter gives the steps for reconstructing serial sections. You will learn the basics of using RECONSTRUCT TM to import a series of images, view and align the sections, trace profiles, and generate

More information

CPM-200 User Guide For Lighthouse for MAX

CPM-200 User Guide For Lighthouse for MAX CPM-200 User Guide For Lighthouse for MAX Contents Page Number Opening the software 2 Altering the page size & Orientation 3-4 Inserting Text 5 Editing Text 6 Inserting Graphics 7-8 Changing the Colour

More information

Interface. 2. Interface Illustrator CS H O T

Interface. 2. Interface Illustrator CS H O T 2. Interface Illustrator CS H O T 2. Interface The Welcome Screen The Illustrator Workspace The Toolbox Keyboard Shortcuts Palette Control Setting Preferences no exercise files Illustrator CS H O T Illustrator

More information

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the

Open. Select the database and click. Print. Set printing options using the dropdown menus, then click the The Original Quick Reference Guides Microsoft Access 2010 Access is a tool for creating and managing databases collections of related records structured in an easily accessible format such as a table,

More information

HYPERSTUDIO TOOLS. THE GRAPHIC TOOL Use this tool to select graphics to edit. SPRAY PAINT CAN Scatter lots of tiny dots with this tool.

HYPERSTUDIO TOOLS. THE GRAPHIC TOOL Use this tool to select graphics to edit. SPRAY PAINT CAN Scatter lots of tiny dots with this tool. THE BROWSE TOOL Us it to go through the stack and click on buttons THE BUTTON TOOL Use this tool to select buttons to edit.. RECTANGLE TOOL This tool lets you capture a rectangular area to copy, cut, move,

More information

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E

LABEL MATRIX TEKLYNX V E R S I O N 8 Q U I C K S T A R T G U I D E TEKLYNX LABEL MATRIX V E R S I O N 8 Q U I C K S T A R T G U I D E Note Quick Start Guide The information in this manual is not binding and may be modified without prior notice. Supply of the software

More information

Goldfish 4. Quick Start Tutorial

Goldfish 4. Quick Start Tutorial Goldfish 4 Quick Start Tutorial A Big Thank You to Tobias Schilpp 2018 Fishbeam Software Text, Graphics: Yves Pellot Proofread, Photos: Tobias Schilpp Publish Code: #180926 www.fishbeam.com Get to know

More information

JASCO CANVAS PROGRAM OPERATION MANUAL

JASCO CANVAS PROGRAM OPERATION MANUAL JASCO CANVAS PROGRAM OPERATION MANUAL P/N: 0302-1840A April 1999 Contents 1. What is JASCO Canvas?...1 1.1 Features...1 1.2 About this Manual...1 2. Installation...1 3. Operating Procedure - Tutorial...2

More information

L E S S O N 2 Background

L E S S O N 2 Background Flight, Naperville Central High School, Naperville, Ill. No hard hat needed in the InDesign work area Once you learn the concepts of good page design, and you learn how to use InDesign, you are limited

More information

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) CS 1033 Multimedia and Communications Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Table Properties Reference Guide The Property

More information

How to Prepare Your Cards for Press Using InDesign

How to Prepare Your Cards for Press Using InDesign How to Prepare Your Cards for Press Using InDesign This Tutorial is Divided into Sections: 1. What do I Need? What is InDesign? 2. How to start a new document with InDesign (the template explained) 3.

More information

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two

ENGL 323: Writing for New Media Repurposing Content for the Web Part Two ENGL 323: Writing for New Media Repurposing Content for the Web Part Two Dr. Michael Little michaellittle@kings.edu Hafey-Marian 418 x5917 Using Color to Establish Visual Hierarchies Color is useful in

More information

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page

Start by launching Mozilla To start making a web page, go to File -> New -> Composer Page Creating a Web Page using Mozilla Composer- A Free Open Source Application Emily Hebard IT Lab School of Information University of Texas at Austin Spring 2003 Objectives Orient to the Mozilla Composer

More information

Getting Started. In This Chapter

Getting Started. In This Chapter Getting Started In This Chapter 2 This chapter introduces concepts and procedures that help you get started with AutoCAD. You learn how to open, close, and manage your drawings. You also learn about the

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

Getting Started. The main tasks described in this section are the following:

Getting Started. The main tasks described in this section are the following: Getting Started Getting Started Before getting into the detailed instructions for using Interactive Drafting workbench, the following tutorial aims at giving you a feel of what you can do with the product.

More information

SMART Ink 1.5. Mac OS X operating system software. Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device.

SMART Ink 1.5. Mac OS X operating system software. Scan the following QR code to view the SMART Ink Help on your smart phone or other mobile device. SMART Ink 1.5 Mac OS X operating system software 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,

More information

Vizit Pro User Manual

Vizit Pro User Manual Vizit Pro User Manual 1 Table of Contents Vizit Pro User Manual... 1 Using Vizit Pro... 3 The Vizit Pro User Interface... 3 Toolbars... 4 File Tab Toolbar... 4 Edit Tab Toolbar... 5 Annotations Tab Toolbar...

More information

Microsoft Silverlight 4 Business Application Development

Microsoft Silverlight 4 Business Application Development Microsoft Silverlight 4 Business Application Development Build Enterprise-Ready Business Applications with Silverlight Frank LaVigne Cameron Albert, - PUBLISHING - 1 BIRMINGHAM - MUMBAI Preface Chapter

More information

Introducing Gupta Report Builder

Introducing Gupta Report Builder Business Reporting Chapter 1 Introducing Gupta Report Builder You can use Report Builder to design reports. This chapter describes: Our approach to building reports. Some of the reports you can build.

More information

A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE)

A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE) A QUICK TOUR OF ADOBE ILLUSTRATOR CC (2018 RELEASE) Lesson overview In this interactive demonstration of Adobe Illustrator CC (2018 release), you ll get an overview of the main features of the application.

More information

Chapter 1. Getting to Know Illustrator

Chapter 1. Getting to Know Illustrator Chapter 1 Getting to Know Illustrator Exploring the Illustrator Workspace The arrangement of windows and panels that you see on your monitor is called the workspace. The Illustrator workspace features

More information

Developing Rich Internet Applications Using Microsoft Silverlight 4

Developing Rich Internet Applications Using Microsoft Silverlight 4 Developing Rich Internet Applications Using Microsoft Silverlight 4 Duration: 5 Days Course Code: M10554 Overview: This course covers intermediate and advanced topics required to develop professional Silverlight

More information

CPSC Tutorial 6

CPSC Tutorial 6 CPSC 481 - Tutorial 6 More WPF (based on previous tutorials by Alice Thudt, Fateme Rajabiyazdi, David Ledo, Brennan Jones, Sowmya Somanath, and Kevin Ta) Introduction Contact Info li26@ucalgary.ca Please

More information

Quick Start. Getting Started

Quick Start. Getting Started CHAPTER 1 Quick Start This chapter gives the steps for reconstructing serial sections. You will learn the basics of using Reconstruct to import a series of images, view and align the sections, trace profiles,

More information

The HOME PAGE opens with a screen split into two parts, Left panel and Right panel.

The HOME PAGE opens with a screen split into two parts, Left panel and Right panel. How to Use the Goodreader Application Goodreader version 4.0.1 OPEN Goodreader from the ipad HOME SCREEN. The HOME PAGE opens with a screen split into two parts, Left panel and Right panel. The Left Panel

More information

OnCOR Silverlight Viewer Guide

OnCOR Silverlight Viewer Guide Getting Around There are many ways to move around the map! The simplest option is to use your mouse in the map area. If you hold the left button down, then click and drag, you can pan the map to a new

More information

Adding Objects Creating Shapes Adding. Text Printing and Exporting Getting Started Creating a. Creating Shapes Adding Text Printing and Exporting

Adding Objects Creating Shapes Adding. Text Printing and Exporting Getting Started Creating a. Creating Shapes Adding Text Printing and Exporting Getting Started Creating a Workspace Pages, Masters and Guides Adding Objects Creating Shapes Adding Text Printing and Exporting Getting Started Creating a Workspace Pages, Masters and Guides Adding Objects

More information

USER MANUAL Table of Contents Slide 00 of 66

USER MANUAL Table of Contents Slide 00 of 66 USER MANUAL 1.5 www.dgflick.com Table of Contents Slide 00 of 66 Table of Contents Table of Contents... 1 1.0. Getting Started... 2 1.1. What is Video Xpress Suite?... 3 1.2. System Requirements to Run

More information

Eloqua Insight Intro Analyzer User Guide

Eloqua Insight Intro Analyzer User Guide Eloqua Insight Intro Analyzer User Guide Table of Contents About the Course Materials... 4 Introduction to Eloqua Insight for Analyzer Users... 13 Introduction to Eloqua Insight... 13 Eloqua Insight Home

More information

Adobe Illustrator CS5 Part 2: Vector Graphic Effects

Adobe Illustrator CS5 Part 2: Vector Graphic Effects CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 2: Vector Graphic Effects Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading the

More information

Layout Tutorial. Getting Started. Creating a Layout Template

Layout Tutorial. Getting Started. Creating a Layout Template Layout Tutorial This tutorial will explain how create a layout template, send views to a layout page, then save the document in PDF format. In this tutorial you will learn about: Creating a Layout Template

More information

User Manual. pdoc Forms Designer. Version 3.7 Last Update: May 25, Copyright 2018 Topaz Systems Inc. All rights reserved.

User Manual. pdoc Forms Designer. Version 3.7 Last Update: May 25, Copyright 2018 Topaz Systems Inc. All rights reserved. User Manual pdoc Forms Designer Version 3.7 Last Update: May 25, 2018 Copyright 2018 Topaz Systems Inc. All rights reserved. For Topaz Systems, Inc. trademarks and patents, visit www.topazsystems.com/legal.

More information

DOT.NET MODULE 6: SILVERLIGHT

DOT.NET MODULE 6: SILVERLIGHT UNIT 1 Introducing Silverlight DOT.NET MODULE 6: SILVERLIGHT 1. Silverlight and Visual Studio 2. Understanding Silverlight Websites 3. Creating a Stand-Alone Silverlight Project 4. Creating a Simple Silverlight

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

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2

End User Guide. 2.1 Getting Started Toolbar Right-click Contextual Menu Navigation Panels... 2 TABLE OF CONTENTS 1 OVERVIEW...1 2 WEB VIEWER DEMO ON DESKTOP...1 2.1 Getting Started... 1 2.1.1 Toolbar... 1 2.1.2 Right-click Contextual Menu... 2 2.1.3 Navigation Panels... 2 2.1.4 Floating Toolbar...

More information

XnView Image Viewer. a ZOOMERS guide

XnView Image Viewer. a ZOOMERS guide XnView Image Viewer a ZOOMERS guide Introduction...2 Browser Mode... 5 Image View Mode...14 Printing... 22 Image Editing...26 Configuration... 34 Note that this guide is for XnView version 1.8. The current

More information

XnView 1.9. a ZOOMERS guide. Introduction...2 Browser Mode... 5 Image View Mode...15 Printing Image Editing...28 Configuration...

XnView 1.9. a ZOOMERS guide. Introduction...2 Browser Mode... 5 Image View Mode...15 Printing Image Editing...28 Configuration... XnView 1.9 a ZOOMERS guide Introduction...2 Browser Mode... 5 Image View Mode...15 Printing... 22 Image Editing...28 Configuration... 36 Written by Chorlton Workshop for hsbp Introduction This is a guide

More information

Creating a Title Block & Border Using Chief Architect. Architectural Design & Residential Construction Penncrest High School

Creating a Title Block & Border Using Chief Architect. Architectural Design & Residential Construction Penncrest High School Creating a Title Block & Border Using Chief Architect Architectural Design & Residential Construction Penncrest High School 2017-2018 Select New Layout to begin designing your Title Block. Note: Once the

More information

AutoCAD 2009 User InterfaceChapter1:

AutoCAD 2009 User InterfaceChapter1: AutoCAD 2009 User InterfaceChapter1: Chapter 1 The AutoCAD 2009 interface has been enhanced to make AutoCAD even easier to use, while making as much screen space available as possible. In this chapter,

More information

Introduction to Data Templates and Value Converters in Silverlight

Introduction to Data Templates and Value Converters in Silverlight Introduction to Data Templates and Value Converters in Silverlight An overview of Data Templates and Value Converters by JeremyBytes.com Overview Business applications are all about data, and laying out

More information

MockupScreens - User Guide

MockupScreens - User Guide MockupScreens - User Guide Contents 1. Overview...4 2. Getting Started...5 Installing the software... 5 Registering... 9 3. Understanding the Interface...11 Menu Bar... 11 Tool bar... 14 Elements... 14

More information

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough.

This walkthrough assumes you have completed the Getting Started walkthrough and the first lift and shift walkthrough. Azure Developer Immersion In this walkthrough, you are going to put the web API presented by the rgroup app into an Azure API App. Doing this will enable the use of an authentication model which can support

More information

GeoWeb Portal. User Manual

GeoWeb Portal. User Manual GeoWeb Portal User Manual Purpose The GeoWeb Portal (GWP) is a map viewing and publishing site. It is designed to allow people to build their own maps and review the data that is attached to the elements

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Milestone Systems. XProtect Web Client 2018 R2. User Manual

Milestone Systems. XProtect Web Client 2018 R2. User Manual Milestone Systems XProtect Web Client 2018 R2 User Manual Contents XProtect Web Client... 5 Log in... 6 Navigating the Home page (explained)... 7 Find a camera... 8 Search for a camera... 8 Navigate to

More information

Navigator Software User s Manual. User Manual. Navigator Software. Monarch Instrument Rev 0.98 May Page 1 of 17

Navigator Software User s Manual. User Manual. Navigator Software. Monarch Instrument Rev 0.98 May Page 1 of 17 User Manual Navigator Software Monarch Instrument Rev 0.98 May 2006 Page 1 of 17 Contents 1. NAVIGATOR SOFTWARE 2. INSTALLATION 3. USING NAVIGATOR SOFTWARE 3.1 STARTING THE PROGRAM 3.2 SYSTEM SET UP 3.3

More information

The HOME Tab: Cut Copy Vertical Alignments

The HOME Tab: Cut Copy Vertical Alignments The HOME Tab: Cut Copy Vertical Alignments Text Direction Wrap Text Paste Format Painter Borders Cell Color Text Color Horizontal Alignments Merge and Center Highlighting a cell, a column, a row, or the

More information

Creating Fill-able Forms using Acrobat 7.0: Part 1

Creating Fill-able Forms using Acrobat 7.0: Part 1 Creating Fill-able Forms using Acrobat 7.0: Part 1 The first step in creating a fill-able form in Adobe Acrobat is to generate the form with all its formatting in a program such as Microsoft Word. Then

More information

User Manual Version 1.1 January 2015

User Manual Version 1.1 January 2015 User Manual Version 1.1 January 2015 - 2 / 112 - V1.1 Variegator... 7 Variegator Features... 7 1. Variable elements... 7 2. Static elements... 7 3. Element Manipulation... 7 4. Document Formats... 7 5.

More information

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS

CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS CHANNEL9 S WINDOWS PHONE 8.1 DEVELOPMENT FOR ABSOLUTE BEGINNERS Full Text Version of the Video Series Published April, 2014 Bob Tabor http://www.learnvisualstudio.net Contents Introduction... 2 Lesson

More information

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name.

InDesign Part II. Create a Library by selecting File, New, Library. Save the library with a unique file name. InDesign Part II Library A library is a file and holds a collection of commonly used objects. A library is a file (extension.indl) and it is stored on disk. A library file can be open at any time while

More information

Out of the Office and Into the Field: Introduction to ArcPad and ArcPad Application Builder

Out of the Office and Into the Field: Introduction to ArcPad and ArcPad Application Builder Out of the Office and Into the Field: Introduction to ArcPad and ArcPad Application Builder A Yale Map Collection GIS Workshop Preparing For the Tutorial 1. Navigate to the C:\Temp folder on your harddrive.

More information