Flowcharts for Picaxe BASIC

Size: px
Start display at page:

Download "Flowcharts for Picaxe BASIC"

Transcription

1 Flowcharts for Picaxe BASIC Tech Studies Page 1 of 11

2 In the college you will use the PICAXE Programming Environment in order to carry out all of your program writing, simulating and downloading to the target processor. If you want to get ahead of the game then you can, quite legally there are no restrictions on the software use this same software at home. In order to download the software you can either type the following in to your web browser or you can use your phone to take you to the web-page by scanning the QR code on the right >>> Download and install as for any other piece of software. Page 2 of 11

3 Start up the PICAXE Programming environment by double clicking on the icon on your desktop >> When the program starts select the following PICAXE mode PICAXE-28X2/40X2 from the drop down list. This should take you to the start-up setting as shown below. This is the default program editing page. Where you will type in / write all of your PICAXE programs. There is a second environment available to us for programming and we will start it up now:- Page 3 of 11

4 Before we start the program let s take a look at what a flowchart is. A flowchart is a form of graphical programming. It allows us to identify the correct program sequence and further it helps sort out the logic of the program. Every flowchart begins with a element and has many other elements in between. element and usually, but does not always end with a Some of the elements you will use when writing your flowcharts are as follows:- Inputs and Outputs Processes Decisions All elements are joined by directional lines or There are other elements but these are the main elements that we will use to start with others will be added as we progress. Here is a simple flowchart:- program start do something make a decision [loop back] program terminate Let s take a closer look at how we can draw up flowcharts for all of the programs we have met so far. Page 4 of 11

5 Examine the tool-bar at the top of the screen and click on the flowchart button. This will open a new programming editor environment. This programming environment is for a graphical programming language called Flow Charting. First I will try and explain all of the graphical symbols. The default toolbar is shown below split into each button. Select Zoom area Pan Add connection points Output commands If commands Sub commands Select within area Zoom in or out Draw lines Add label movement Delay commands Other commands Page 5 of 11

6 Each button that you select from the main toolbar will bring up another toolbar that expands available graphical commands. Let s look at the first example program from your hand-out Example-1. The next flowchart is a bit more complex. It has a decision making process in it. You may have noticed that each element of a flowchart has only one input and one output the only element that has more than two is the decision element this has three an input and two outputs. The ouputs are the result of a question and can be either true or false, good or bad or just yes or no. As an example let us imagine that you are writing a program that will do one thing if the input pinc.0 = 0 and will do an other thing if the input pinc.0 = 1. We can represent this in code as: At the if statement just ask the question, is pinc.0 = 0 if the answer is NO then follow the N route out of the decision element otherwise follow the Y route. Simple, yes? Earlier in the text I said that we can sort out LOGIC using flowcharts, if you find that there is more than just a yes or no answer at a decision element then you must have more than one question at this point therefore you re-think your question and re-draw your flowchart. Page 6 of 11

7 Page 7 of 11

8 So how do we go about building a flowchart? Let s look at the Example1 program and construct the flowchart shown at the top of page 6. Open a new programming editor environment and select the flowchart button. The people at PICAXE have started your flowchart for you by placing the start element on the page for you:- Perhaps now is a good time to save your first flowchart. Click on File and select save as >> When the dialogue box opens up type in Example1 and click OK remember, save your programs often too many times I hear the cry go up that someone has lost the program that they have been working on because a computer has failed or frozen. This is not the computer s fault, if you have been working on a program for say 5 minutes then stop and save it, if you decide that you want to run a simulation then stop and save before you do it or if you decide you want to download your latest masterpiece to the target microprocessor then stop and save your file before you do it you have been warned. Some people get quite offended and annoyed when I laugh at them when they lose their work just let me say, if you feel that you may be one of these people THEN SAVE YOUR WORK FREQUENTLY SAVE, SAVE, SAVE YOUR WORK- YOU HAVE BEEN WARNED. Examine the first line of program code This is an output the program is saying set the output pin 7 HIGH Look at the button-bar and select the OUT button This will open another button bar Examine the options Page 8 of 11

9 The HIGH option is pre-selected and you can click anywhere on the yellow area to drop the HIGH element on the page But I suggest you position it one or two dots below the START element. You should now have something similar to that shown on the right When we insert the HIGH element the default is 0, but we want HIGH = 7. No problem click on the arrow at the left of the button bar. Click on the HIGH element look down at the bottom left of the editing area und you should see an input box like this >> Click on the small arrow on the right of the box and select the value 7 from the drop-down list >> Many of the options that we have to change use this same process. Click on the curly arrow to go back to the main toolbar We will now join these elements together using the lines element click on it now Notice now that as you move the cursor about the line terminators on the elements change to a bubble outlined in red this indicates that a line can either start or end at this point >> Make sure the bubble shows on the START termination CLICK on it and drag towards the HIGH element it can be difficult to position the arrow at the correct point but a bit of practice helps. If you end up with a line that you feel is incorrect the just place the cursor over it and click it should disappear, sometimes when the termination points are close together then drawing the line upwards makes the arrow snap to the required point >> Examine the next line of program code We now need to insert a DELAY element >> This brings up another button bar: Again examine the options We want to PAUSE the program therefore we will select >> Again drop the element a couple of dots below the previous element >> Now as before select the arrow on the left of the button-bar, select the element then at the bottom of the screen change the default value of 1000 to the required Watch out if you hit the delete key the program will think you are deleting the element just click on NO and you should be ok. Now go back to the main button-bar and join the elements. Page 9 of 11

10 Your flowchart should now look like this >> You might want to expand the editing area to fill the available screen space do this by clicking on the MAXIMISE button at the top right of the editing area. OK repeat this until you are down to PAUSE 3000 >> In order to get everything visible on the screen you may have to ZOOM out. This program employs a strange method for this. Select the ZOOM IN OUT button >> Other than the cursor changing to a magnifying glass with a + and next to it nothing else seems to happen. If you click with the left mouse button and move the cursor UP and DOWN then the zooming will take place. OK things could end up so small that they are unreadable if we keep building our flowchart downwards. In order to prevent this we can continue our construction on the right hand side of the current program [never on the left] and join the bottom of the left most program with the top of the right >> Now complete the flowchart for Example1 Page 10 of 11

11 Just a question HOW MANY TIMES DID YOU SAVE YOUR WORK? Get used to saving your work if you don t you may well regret it. Now take a look at the hand-out which contains the programming examples and see if you can create flowcharts for the given programs. Page 11 of 11

Using IPACS Webserver:

Using IPACS Webserver: Using IPACS Webserver: Logging On: The IPACS Webserver can be accessed from any PC with internet connectivity. 1. Open Internet Explorer or your internet service provider. 2. Type the IPACS web address

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

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module.

Click Here to Begin OS X. Welcome to the OS X Basics Learning Module. OS X Welcome to the OS X Basics Learning Module. This module will teach you the basic operations of the OS X operating system, found on the Apple computers in the College of Technology computer labs. The

More information

Programmable timer PICAXE programming editor guide Page 1 of 13

Programmable timer PICAXE programming editor guide Page 1 of 13 Programmable timer PICAXE programming editor guide Page 1 of 13 This programming guide is for use with: A programmable timer board. PICAXE programming editor software. When the software starts a menu is

More information

How To Upload Your Newsletter

How To Upload Your Newsletter How To Upload Your Newsletter Using The WS_FTP Client Copyright 2005, DPW Enterprises All Rights Reserved Welcome, Hi, my name is Donna Warren. I m a certified Webmaster and have been teaching web design

More information

Please click double click on the icon labeled Internet Explorer, the picture is a blue letter E.

Please click double click on the icon labeled Internet Explorer, the picture is a blue letter E. Introduction to the Internet Instructor: Jonathan Barkand (412-655-8447) How to get connected? First chose an Internet provider, they will probably have software they will need to send you. There are dial-up

More information

How to make a Work Profile for Windows 10

How to make a Work Profile for Windows 10 How to make a Work Profile for Windows 10 Setting up a new profile for Windows 10 requires you to navigate some screens that may lead you to create the wrong type of account. By following this guide, we

More information

Outline. Debugging. In Class Exercise Solution. Review If Else If. Immediate Program Errors. Function Test Example

Outline. Debugging. In Class Exercise Solution. Review If Else If. Immediate Program Errors. Function Test Example Debugging Larry Caretto Mechanical Engineering 209 Computer Programming for Mechanical Engineers February 16, 2017 Outline Review choice statements Finding and correcting program errors Debugging toolbar

More information

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule

MAKING TABLES WITH WORD BASIC INSTRUCTIONS. Setting the Page Orientation. Inserting the Basic Table. Daily Schedule MAKING TABLES WITH WORD BASIC INSTRUCTIONS Setting the Page Orientation Once in word, decide if you want your paper to print vertically (the normal way, called portrait) or horizontally (called landscape)

More information

Introduction to SPSS

Introduction to SPSS Introduction to SPSS Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data file and calculate

More information

Editing Videos. Overview. 1. Open the Editor

Editing Videos. Overview. 1. Open the Editor Editing Videos Overview The Panopto editor allows for easy web-based editing from any modern browser. You can perform quick, non-destructive edits to any video on the Panopto platform and deliver exactly

More information

A Guide to Autodesk Maya 2015

A Guide to Autodesk Maya 2015 A Guide to Autodesk Maya 2015 Written by Mitchell Youngerman Table of Contents Layout of Toolbars...pg 1 Creating Objects...pg 2 Selecting & Deselecting Objects...pg 3 Changing Perspective... pg 4 Transforming

More information

OPEN THE HOTLINE CLIENT

OPEN THE HOTLINE CLIENT OPEN THE HOTLINE CLIENT Everything in the Hotline universe starts with the Client Toolbar; it launches all of the Client s major functions. 1 Double-click the Hotline icon on your desktop. The Hotline

More information

Quick Guide OneNote. What is OneNote?

Quick Guide OneNote. What is OneNote? This quick guide gives provides you with a good insight into how to use the OneNote smart tool. The content is updated continuously. At the end of the quick guide you will find exercises that will help

More information

Let s Make a Front Panel using FrontCAD

Let s Make a Front Panel using FrontCAD Let s Make a Front Panel using FrontCAD By Jim Patchell FrontCad is meant to be a simple, easy to use CAD program for creating front panel designs and artwork. It is a free, open source program, with the

More information

Tabbing Between Fields and Control Elements

Tabbing Between Fields and Control Elements Note: This discussion is based on MacOS, 10.12.6 (Sierra). Some illustrations may differ when using other versions of macos or OS X. The capability and features of the Mac have grown considerably over

More information

Let s begin by naming the first folder you create Pictures.

Let s begin by naming the first folder you create Pictures. 1 Creating a Folder on Your Desktop Saving A Picture to Your Folder Creating Desktop Wallpaper from Pictures on the Internet Changing Your Home Page Creating a Shortcut to a Web Page on Your Desktop One

More information

Map Direct Lite. Contents. Quick Start Guide: Map Navigation 8/17/2015

Map Direct Lite. Contents. Quick Start Guide: Map Navigation 8/17/2015 Map Direct Lite Quick Start Guide: Map Navigation 8/17/2015 Contents Quick Start Guide: Map Navigation... 1 Map Navigation in Map Direct Lite.... 2 Pan the Map by Dragging It.... 3 Zoom the Map In by Dragging

More information

Module 1: Introduction RStudio

Module 1: Introduction RStudio Module 1: Introduction RStudio Contents Page(s) Installing R and RStudio Software for Social Network Analysis 1-2 Introduction to R Language/ Syntax 3 Welcome to RStudio 4-14 A. The 4 Panes 5 B. Calculator

More information

Learning to use the drawing tools

Learning to use the drawing tools Create a blank slide This module was developed for Office 2000 and 2001, but although there are cosmetic changes in the appearance of some of the tools, the basic functionality is the same in Powerpoint

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 21.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies

Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies Autodesk Inventor Design Exercise 2: F1 Team Challenge Car Developed by Tim Varner Synergis Technologies Tim Varner - 2004 The Inventor User Interface Command Panel Lists the commands that are currently

More information

GUARDIAN ALARM SYSTEMS

GUARDIAN ALARM SYSTEMS GUARDIAN ALARM SYSTEMS Hints & Tips Smart PSS Video Software How to video live cameras and playback of recordings. Login to Smart PSS Software 1. Double Click the Shortcut the technician put on your desktop;

More information

You might think of Windows XP as a set of cool accessories, such as

You might think of Windows XP as a set of cool accessories, such as Controlling Applications under Windows You might think of Windows XP as a set of cool accessories, such as games, a calculator, and an address book, but Windows is first and foremost an operating system.

More information

Barchard Introduction to SPSS Marks

Barchard Introduction to SPSS Marks Barchard Introduction to SPSS 22.0 3 Marks Purpose The purpose of this assignment is to introduce you to SPSS, the most commonly used statistical package in the social sciences. You will create a new data

More information

File Storage & Windows Tips

File Storage & Windows Tips Recycle Bin Holds onto deleted files until you empty the bin. Windows Desktop The screen below should be similar to what you may have seen on your computer at work or at home. Icons For: Programs Files

More information

Using Garage Band to Record a Podcast

Using Garage Band to Record a Podcast Using Garage Band to Record a Podcast 1. Open GarageBand 2. Click on New Podcast Episode 3. If you don t see this screen, go to File -> New 4. Name and save your project 5. If you are NOT using headphones

More information

City of Richmond Interactive Map (RIM) User Guide for the Public

City of Richmond Interactive Map (RIM) User Guide for the Public Interactive Map (RIM) User Guide for the Public Date: March 26, 2013 Version: 1.0 3479477 3479477 Table of Contents Table of Contents Table of Contents... i About this

More information

Step-by-step guide to dubbing (ADR) in Audacity

Step-by-step guide to dubbing (ADR) in Audacity Step-by-step guide to dubbing (ADR) in Audacity Step 1: Starting out Open the.mp4 movie file you want to dub (open as in any other program: File > Open) The.mp4 file can already have hard coded subtitles

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

PI3000. User Guide PASSENGER INFORMATION SYSTEM. rev 1.2

PI3000. User Guide PASSENGER INFORMATION SYSTEM. rev 1.2 PI3000 PASSENGER INFORMATION SYSTEM User Guide rev 1.2 PLEASE READ THIS FIRST! Insurance The security dongle has significant value and is the key to your system and your charts. It is not possible to replace

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

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

First Walkthrough: Fundamentals of Camtasia Studio

First Walkthrough: Fundamentals of Camtasia Studio First Walkthrough: Fundamentals of Camtasia Studio First Walkthrough: Fundamentals of Camtasia Studio 2 Table of Contents Recording with Camtasia Studio.............. 3-4 Editing with Camtasia Studio.................

More information

Sketching Data

Sketching Data Sketching Data 101010001010 Carson Smuts - GSAPP 2013 This document outlines the core principles behind Parametric and Algorithmic computation. What has become evident is that users tend to learn as much

More information

Fruit Snake SECTION 1

Fruit Snake SECTION 1 Fruit Snake SECTION 1 For the first full Construct 2 game you're going to create a snake game. In this game, you'll have a snake that will "eat" fruit, and grow longer with each object or piece of fruit

More information

This is the opening view of blender.

This is the opening view of blender. This is the opening view of blender. Note that interacting with Blender is a little different from other programs that you may be used to. For example, left clicking won t select objects on the scene,

More information

Word 2003: Flowcharts Learning guide

Word 2003: Flowcharts Learning guide Word 2003: Flowcharts Learning guide How can I use a flowchart? As you plan a project or consider a new procedure in your department, a good diagram can help you determine whether the project or procedure

More information

SketchUp Tool Basics

SketchUp Tool Basics SketchUp Tool Basics Open SketchUp Click the Start Button Click All Programs Open SketchUp Scroll Down to the SketchUp 2013 folder Click on the folder to open. Click on SketchUp. Set Up SketchUp (look

More information

Using Microsoft Word. Text Editing

Using Microsoft Word. Text Editing Using Microsoft Word A word processor is all about working with large amounts of text, so learning the basics of text editing is essential to being able to make the most of the program. The first thing

More information

Student Success Guide

Student Success Guide Student Success Guide Contents Like a web page, links in this document can be clicked and they will take you to where you want to go. Using a Mouse 6 The Left Button 6 The Right Button 7 The Scroll Wheel

More information

Making ecards Can Be Fun!

Making ecards Can Be Fun! Making ecards Can Be Fun! A Macromedia Flash Tutorial By Mike Travis For ETEC 664 University of Hawaii Graduate Program in Educational Technology April 4, 2005 The Goal The goal of this project is to create

More information

Add notes to a document

Add notes to a document Add notes to a document WX and AX Add notes to a document ApplicationXtender Web Access (WX) and ApplicationXtender Document Manager (AX) In ApplicationXtender, you can mark up a document using the annotation

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10

Working with Pages... 9 Edit a Page... 9 Add a Page... 9 Delete a Page Approve a Page... 10 Land Information Access Association Community Center Software Community Center Editor Manual May 10, 2007 - DRAFT This document describes a series of procedures that you will typically use as an Editor

More information

Adding content to your Blackboard 9.1 class

Adding content to your Blackboard 9.1 class Adding content to your Blackboard 9.1 class There are quite a few options listed when you click the Build Content button in your class, but you ll probably only use a couple of them most of the time. Note

More information

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator...

Agenda. First Example 24/09/2009 INTRODUCTION TO VBA PROGRAMMING. First Example. The world s simplest calculator... INTRODUCTION TO VBA PROGRAMMING LESSON2 dario.bonino@polito.it Agenda First Example Simple Calculator First Example The world s simplest calculator... 1 Simple Calculator We want to design and implement

More information

ELEC451 Integrated Circuit Engineering Using Cadence's Virtuoso Layout Editing Tool

ELEC451 Integrated Circuit Engineering Using Cadence's Virtuoso Layout Editing Tool ELEC451 Integrated Circuit Engineering Using Cadence's Virtuoso Layout Editing Tool Contents Contents 1. General 2. Creating and Working On a Layout o 2.1 Undoing/Re-doing an Action o 2.2 Display Options

More information

Kurzweil Cheat Sheet

Kurzweil Cheat Sheet Kurzweil Cheat Sheet Kurzweil tools include Screen read text by letter, word, syllable or sentence. Reading, Writing and Study Skills Toolbars Adjustable voice and rate of speech Spellcheck, definitions

More information

PHOTOPLUS HELP GUIDE

PHOTOPLUS HELP GUIDE INTRODUCTION TO PHOTOPLUS 6.0 3 PHOTOPLUS 6.0 - the interface File Menu & Tab Panels The Layers Manager 4 The Color Tab 6 The Toolbar 7 FILE MANAGEMENT & VERSION CONTROL 9 PhotoPlus Exercise Part 1 Drawing

More information

Using web-based

Using web-based Using web-based Email 1. When you want to send a letter to a friend you write it, put it in an envelope, stamp it and put it in the post box. From there the postman picks it up, takes it to a sorting office

More information

Click the buttons in the interactive below to learn how to navigate the Access window.

Click the buttons in the interactive below to learn how to navigate the Access window. Access 2010 Getting Started in Access Introduction Page 1 Whenever you're learning a new program, it's important to familiarize yourself with the program window and the tools within it. Working with Access

More information

Quick Start Guide. Overview Adding Box+ImageTrust to your Box account Scanning with Box+ImageTrust

Quick Start Guide. Overview Adding Box+ImageTrust to your Box account Scanning with Box+ImageTrust Quick Start Guide Box+ImageTrust is a unique integration of an HTML5 Scan client. While working in box you can now easily scan and import documents. Overview................................... 2 Adding

More information

Online Plan Room Viewer View Mode Quick Start Supplementt Version 10.7

Online Plan Room Viewer View Mode Quick Start Supplementt Version 10.7 Online Plan Room Viewer View Mode Quick Start Supplement Version 10.7 Introduction 1 This guide is intended to cover the basic tools available for viewing and estimating project documents using On-Screen

More information

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s)

Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard. Author(s) Title of Resource Introduction to SPSS 22.0: Assignment and Grading Rubric Kimberly A. Barchard Author(s) Leiszle Lapping-Carr Institution University of Nevada, Las Vegas Students learn the basics of SPSS,

More information

Introduction to GIS & Mapping: ArcGIS Desktop

Introduction to GIS & Mapping: ArcGIS Desktop Introduction to GIS & Mapping: ArcGIS Desktop Your task in this exercise is to determine the best place to build a mixed use facility in Hudson County, NJ. In order to revitalize the community and take

More information

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are:

Here we will look at some methods for checking data simply using JOSM. Some of the questions we are asking about our data are: Validating for Missing Maps Using JOSM This document covers processes for checking data quality in OpenStreetMap, particularly in the context of Humanitarian OpenStreetMap Team and Red Cross Missing Maps

More information

EE261 Computer Project 1: Using Mentor Graphics for Digital Simulation

EE261 Computer Project 1: Using Mentor Graphics for Digital Simulation EE261 Computer Project 1: Using Mentor Graphics for Digital Simulation Introduction In this project, you will begin to explore the digital simulation tools of the Mentor Graphics package available on the

More information

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch

CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch CSCI 1100L: Topics in Computing Lab Lab 11: Programming with Scratch Purpose: We will take a look at programming this week using a language called Scratch. Scratch is a programming language that was developed

More information

TurboCAD Pro V17 Workplanes

TurboCAD Pro V17 Workplanes Donald B. Cheke TurboCAD Pro V17 Workplanes Demystifying TurboCAD Workplanes Donald B. Cheke 1 Copyright 2010 Donald B. Cheke TurboCAD is a registered trademark of IMSI/Design. Published by: Donald B.

More information

Photoshop tutorial: Final Product in Photoshop:

Photoshop tutorial: Final Product in Photoshop: Disclaimer: There are many, many ways to approach web design. This tutorial is neither the most cutting-edge nor most efficient. Instead, this tutorial is set-up to show you as many functions in Photoshop

More information

WordEmbed. CINDEX Tutorial. Cindex Tutorial

WordEmbed. CINDEX Tutorial. Cindex Tutorial CINDEX Tutorial This tutorial uses Word 2003. If you wish to follow it yourself, the text file used is available for download from the website here 1. Start Cindex and create an new index file: Cindex>

More information

Microsoft Word 2011 Basics

Microsoft Word 2011 Basics Microsoft Word 2011 Basics Note: Illustrations for this document are based on Word 2010 for windows. There are significant differences between Word for Windows and Word for Mac. Start Word From the gallery

More information

TRAINING GUIDE. Tablet Cradle to Mobile GIS

TRAINING GUIDE. Tablet Cradle to Mobile GIS TRAINING GUIDE Tablet Cradle to Mobile GIS Tablet Cradle to Mobile One of the critical components of mobile is the GIS piece, and also can be the most complex. The mobile GIS maps are designed to consume

More information

Basics of Adobe Premiere

Basics of Adobe Premiere Basics of Adobe Premiere Getting started: The first thing you ll see when you open Adobe Premiere is a window asking to open a project or start a new one. Let s start a new one. (Images from CS6 version,

More information

Bucknell University Digital Collections. LUNA Insight User Guide February 2006

Bucknell University Digital Collections. LUNA Insight User Guide February 2006 Bucknell University Digital Collections LUNA Insight User Guide February 2006 User Guide - Table of Contents Topic Page Number Installing Insight. 2-4 Connecting to Insight 5 Opening Collections. 6 Main

More information

Lab 3: Digitizing in ArcMap

Lab 3: Digitizing in ArcMap Lab 3: Digitizing in ArcMap What You ll Learn: In this Lab you ll be introduced to basic digitizing techniques using ArcMap. You should read Chapter 4 in the GIS Fundamentals textbook before starting this

More information

SharePoint: Fundamentals

SharePoint: Fundamentals SharePoint: Fundamentals This class will introduce you to SharePoint and cover components available to end users in a typical SharePoint site. To access SharePoint, you will need to log into Office 365.

More information

Computer Essentials Session 1 Step-by-Step Guide

Computer Essentials Session 1 Step-by-Step Guide Note: Completing the Mouse Tutorial and Mousercise exercise which are available on the Class Resources webpage constitutes the first part of this lesson. ABOUT PROGRAMS AND OPERATING SYSTEMS Any time a

More information

Introduction to Windows

Introduction to Windows Introduction to Windows Naturally, if you have downloaded this document, you will already be to some extent anyway familiar with Windows. If so you can skip the first couple of pages and move on to the

More information

EchoSub v1.2 EchoStyle

EchoSub v1.2 EchoStyle EchoSub v1.2 EchoStyle 2002-2003 2 I. Introduction These days it s nothing special anymore to watch a movie on your computer. But of course, you also want matching subtitles. These can be gotten from many

More information

Learning and Development. UWE Staff Profiles (USP) User Guide

Learning and Development. UWE Staff Profiles (USP) User Guide Learning and Development UWE Staff Profiles (USP) User Guide About this training manual This manual is yours to keep and is intended as a guide to be used during the training course and as a reference

More information

Prezi Quick Guide: Make a Prezi in minutes

Prezi Quick Guide: Make a Prezi in minutes Prezi Quick Guide: Make a Prezi in minutes by Billy Meinke Updated Feb 2016 by Gina Iijima Welcome! This short guide will have you making functional and effective Prezis in no time. Prezi is a dynamic

More information

Gratitude Journal Presented by

Gratitude Journal Presented by www.gettingunstuckllc.com 1 Presented by Getting Unstuck, LLC http://www.gettingunstuckllc.com User Manual Introduction Welcome to The! We all know how important gratitude is in our lives. Without gratitude

More information

LEARN OPENSTREET MAP FOR TANZANIA PROJECT 2501 FIRST SIGN UP FOR AN ACCOUNT HERE https://www.openstreetmap.org/user/new

LEARN OPENSTREET MAP FOR TANZANIA PROJECT 2501 FIRST SIGN UP FOR AN ACCOUNT HERE https://www.openstreetmap.org/user/new FIRST SIGN UP FOR AN ACCOUNT HERE https://www.openstreetmap.org/user/new Next there is a long-ish but useful tutorial on how to use OpenStreetMap at MapGive http://mapgive.state.gov/learn-to-map/ - the

More information

Getting Started Guide

Getting Started Guide SnagIt Getting Started Guide Welcome to SnagIt Thank you for your purchase of SnagIt. SnagIt is the premier application to use for all of your screen capturing needs. Whatever you can see on your screen,

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

Data. Selecting Data. Sorting Data

Data. Selecting Data. Sorting Data 1 of 1 Data Selecting Data To select a large range of cells: Click on the first cell in the area you want to select Scroll down to the last cell and hold down the Shift key while you click on it. This

More information

Reading: Managing Files in Windows XP

Reading: Managing Files in Windows XP Student Resource 13.4a Reading: Managing Files in Windows XP Directions: All recent versions of Windows (XP, Vista, Windows 7) have fairly similar ways of managing files, but their graphic user interfaces

More information

Welcome to the world of .

Welcome to the world of  . Welcome to the world of e-mail. E-mail, short for electronic mail, allows computer users to easily send messages back and forth between acquaintances around the world. There are a variety of ways to do

More information

Getting Started with Amicus Document Assembly

Getting Started with Amicus Document Assembly Getting Started with Amicus Document Assembly How great would it be to automatically create legal documents with just a few mouse clicks? We re going to show you how to do exactly that and how to get started

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Creating and Using an Account

Creating and Using an  Account Creating and Using an Email Account How to get on the Internet Click two times very quickly (double click) on any of the following icons: These are called browsers. They are what you use to search the

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

DOING MORE WITH WORD: MICROSOFT OFFICE 2010 DOING MORE WITH WORD: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT WORD PAGE 03 Viewing Toolbars Adding and Removing Buttons MORE TASKS IN MICROSOFT WORD

More information

Section 1. System Technologies and Implications. Modules

Section 1. System Technologies and Implications. Modules System Technologies and Implications Modules 1.1 Introduction to computers 1.2 Software 1.3 Hardware 1.4 File management 1.5 ICTs in perspective 1.6 Extended software concepts 1.7 Extended hardware concepts

More information

Note: Photoshop tutorial is spread over two pages. Click on 2 (top or bottom) to go to the second page.

Note: Photoshop tutorial is spread over two pages. Click on 2 (top or bottom) to go to the second page. Introduction During the course of this Photoshop tutorial we're going through 9 major steps to create a glass ball. The main goal of this tutorial is that you get an idea how to approach this. It's not

More information

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

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

More information

Mac: Beyond Basics. Window 2 (Microsoft Word) Window 1 (folder contents)

Mac: Beyond Basics. Window 2 (Microsoft Word) Window 1 (folder contents) Mac: Beyond Basics Working with windows When you open a file or application, you will see a window. This window is your working area. It is possible to have many windows open at the same time. This allows

More information

SPRITES Making Things Move Around The Screen

SPRITES Making Things Move Around The Screen Unless you re playing something like Zork (GREATEST game in the world BTW!), you will likely need to move images around the screen. In this lesson we re going to work with simple 2D images, normally called

More information

Introduction to Desktop Publishing

Introduction to Desktop Publishing Headley Computer Club Introduction to Desktop Publishing Microsoft Publisher Margaret Manly November 2009 3 Introduction to Desktop Publishing Session 1 Why not stick with Word? More flexibility More scope

More information

The smarter, faster guide to Microsoft Outlook

The smarter, faster guide to Microsoft Outlook The smarter, faster guide to Microsoft Outlook Settings... 1 The Inbox... 1 Using E-Mail... 4 Sending Attachments... 6 Some things to watch out for with File Attachments:... 7 Creating an Email Signature...

More information

CS 051 Homework Laboratory #2

CS 051 Homework Laboratory #2 CS 051 Homework Laboratory #2 Dirty Laundry Objective: To gain experience using conditionals. The Scenario. One thing many students have to figure out for the first time when they come to college is how

More information

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield

Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0. University of Sheffield Course Exercises for the Content Management System. Grazyna Whalley, Laurence Cornford June 2014 AP-CMS2.0 University of Sheffield PART 1 1.1 Getting Started 1. Log on to the computer with your usual username

More information

A Brief Introduction of how to use Audacity

A Brief Introduction of how to use Audacity A Brief Introduction of how to use Audacity Introduction To enable yourself to start Podcasting you need to have all the tools that make the process possible. An integral part of that process is the recording

More information

Tutorial 1 Importing Data

Tutorial 1 Importing Data Tutorial 1 Importing Data Welcome to this tutorial in which we will look at how to import raw tire data into OptimumT. In this tutorial you will learn how to: 1. Loading files 2. Using Import Templates

More information

Chapter One: Getting Started With IBM SPSS for Windows

Chapter One: Getting Started With IBM SPSS for Windows Chapter One: Getting Started With IBM SPSS for Windows Using Windows The Windows start-up screen should look something like Figure 1-1. Several standard desktop icons will always appear on start up. Note

More information

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5

SWITS User Manual. Accessing SWITS. This document focuses on the elements required to Access SWITS. Total Pages: 5 SWITS User Manual This document focuses on the elements required to Access SWITS Total Pages: 5 Accessing SWITS Using Your Browser to Access SWITS Identity Management Context Creating a shortcut California

More information

Randy H. Shih. Jack Zecher PUBLICATIONS

Randy H. Shih. Jack Zecher   PUBLICATIONS Randy H. Shih Jack Zecher PUBLICATIONS WWW.SDCACAD.COM AutoCAD LT 2000 MultiMedia Tutorial 1-1 Lesson 1 Geometric Construction Basics! " # 1-2 AutoCAD LT 2000 MultiMedia Tutorial Introduction Learning

More information