3. Add an Event: Alarm Alarm 0 a. Add an Action: Set Variable i. Applies to: Self ii. Variable: time_left iii. Value: +1 iv. Check the Relative box

Size: px
Start display at page:

Download "3. Add an Event: Alarm Alarm 0 a. Add an Action: Set Variable i. Applies to: Self ii. Variable: time_left iii. Value: +1 iv. Check the Relative box"

Transcription

1 Creating a Timer: You can have a timer that shows how long the player has been playing the game. 1. Create a new object and give it a name. This example is called object_timer. 2. Add an Event: Create a. Add an Action: Set Variable ii. Variable: time_left (or any other name that is not already used by the game.) iii. Value: 0 b. Add an Action: Set Alarm ii. Number of steps: 30 (this will make the timer add time every second) iii. In alarm no: Alarm 0 3. Add an Event: Alarm Alarm 0 a. Add an Action: Set Variable ii. Variable: time_left iii. Value: +1 iv. Check the Relative box b. Add an Action: Set Alarm ii. Number of steps: 30 iii. In alarm no: Alarm 0

2 4. Add an Event: Draw Draw a. Add an Action: Draw the variable ii. Variable: time_left iii. X: 64 (wherever you want it displayed from the top left corner of your game which is 0,0) iv. Y: 64 v. No check in the Relative box Creating a Count Down Timer: To make a countdown on a level, you have to use Timer Actions and Events in game maker. Timer actions are basically like an egg timer in real life, you set how long the timer goes on for and there is an Event when the time is up. In game maker you can set up to 12 alarms on one object. When you set an alarm action, it counts down to 0 and then the Alarm event happens. Making the Timer Object First, you need to make a new object. In this example it is called it o_timer. It does not need a sprite. Setting the Time Limit We have to make a variable to remember how many seconds are left on the clock. Add the Event: Create Event Add the Action: Set Variable Set the variable as, time_left Set the value as, 60 This will make us a new variable that will remember how many seconds is left before the time is up. Ticking away at the Time Now, to tick the time away, we want to take 1 away from the time_left variable very second. We can do this with a Timer Action, if we set the timer for one second, on the Timer Event, we can reduce the time_left variable. Time in game maker is measured in steps, there are 30 steps per second which is set under speed in the settings of the room. First we have to set the timer, Still in the Event: Create, add an Action: Set an Alarm Clock Action

3 Remember that there are 30 steps in a second, we want this alarm to happen every second so Set number of steps as, 30 set, in alarm no, as 0 You can have up to 12 alarms, we will use the first alarm (which is alarm 0) in order to do something when alarm 0 rings. We have to put the Actions in an Alarm Event for alarm 0. Add a new Alarm Event and from the drop down list, choose Alarm 0 The first thing we want to do when the second is up is take 1 away from the time_left variable. From the Control tab, add the, Set Variable Action Set variable as, time_left Set value as, -1 relative This will take 1 away from the time_left Checking if Time is Up After we take a second away, we should really set the alarm again for another second but ONLY if there are still some seconds left, if not, we should do the time up actions, these will depend on what you want your game to do when the time runs out. We will check if the time_left variable's value is zero. If it is, we will do something to end the level. If not, then we will reset the alarm for another second. Still in the Alarm 0 event, from the Control Tab, add the Check IF Variable has a Value Action Set variable as: time_left Set value as: 0

4 Set operation as: equal to This will check if the time_left variable's value is equal to 0. An IF question normally only does the next action block the question is true, if it's not, it skips to the block after. If we want to do more than one Action if the question is true, we need to use Start and End Blocks. From the Control Tab, add the Start and End Blocks one after the other. After the Action that happens when a question is true, you can use an Else Statement to do something if the answer is false and only if the answer is false. We will use an else statement and if the answer to our question is false, we will reset the second timer. From the Control Tab, Add the Else Block From the Main2 tab, add the Set an Alarm Clock Action Set number of steps as: 30 set in alarm no as: 0 Now, we have a timer that will tick down, it's up to you to put Actions between the Start and End blocks, these actions will happen when the time is up. In the following example, I used the Show Message Action to display a message Time Up. The message will ONLY show if time_left is equal to 0, otherwise the Else action, Reset Alarm, will happen. Displaying the Countdown Timer At the moment, the timer is fully functional, it waits for 60 seconds and it will perform your event. However, this is not good for the game because the player can't see the time. We want to draw the timer on the screen so the player knows exactly how much time they have left. Add the Draw Event to the timer object. This is event is used to draw onto the screen. Draw Actions will ONLY work in a Draw Event. On the Draw Event, from the Control tab, use the Draw Value of a Variable Action On the settings menu you have to choose what variable to draw and where. Set variable as: time_left

5 Set x and y values for where you want the timer to display. In this example I have put x: 10 and y: 10. This will draw it at the top left of the level.

Creating Maze Games. Game Maker Tutorial. The Game Idea. A Simple Start. Written by Mark Overmars

Creating Maze Games. Game Maker Tutorial. The Game Idea. A Simple Start. Written by Mark Overmars Game Maker Tutorial Creating Maze Games Written by Mark Overmars Copyright 2007-2009 YoYo Games Ltd Last changed: December 23, 2009 Uses: Game Maker 8.0, Lite or Pro Edition, Advanced Mode Level: Beginner

More information

Fish Chomp. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code

Fish Chomp. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code Introduction: We re going to make a game! Guide the large Hungry Fish and try to eat all the prey that are swimming around. Activity Checklist Follow these INSTRUCTIONS one by one Click on the green flag

More information

Whack-a-Witch. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code

Whack-a-Witch. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code Introduction: This project is like the game Whack-a-Mole. You get points for hitting the witches that appear on the screen. The aim is to get as many points as possible in 30 seconds! Activity Checklist

More information

Using the audience response system

Using the audience response system Using the audience response system Last Updated: January 29, 2015 OSBA has purchased a Turning Technologies audience response system. This system uses radio-frequency cards to gather information from an

More information

Fruit Machine. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code

Fruit Machine. Level. Activity Checklist Follow these INSTRUCTIONS one by one. Test Your Project Click on the green flag to TEST your code Introduction: This is a game that has three sprites that change costume. You have to stop them when they re showing the same picture (like a fruit machine!). Activity Checklist Follow these INSTRUCTIONS

More information

How to Add Users 1. 2.

How to Add Users 1. 2. Administrator Guide Contents How to Add Users... 2 How to Delete a User... 9 How to Create Sub-groups... 12 How to Edit the Email Sent Out to New Users... 14 How to Edit and Add a Logo to Your Group's

More information

TISSOT TWOTIMER SETTING INSTRUCTIONS

TISSOT TWOTIMER SETTING INSTRUCTIONS TISSOT TWOTIMER SETTING INSTRUCTIONS The Twotimer is available in many different styles, in both round and rectangular cases but the setting instructions are identical for all. 1 of 5 26-03-2011 13:49

More information

USING WINDOWS MOVIE MAKER TO CREATE THE MOMENT BEHIND THE PHOTO STORY PART 1

USING WINDOWS MOVIE MAKER TO CREATE THE MOMENT BEHIND THE PHOTO STORY PART 1 PART 1 Windows Movie Maker lets you assemble a range of video, pictures, and sound elements to create a story. It is an application that comes with most PC computers. This tip sheet was created using Windows

More information

Supplemental Worksheet Problems To Accompany: The Pre-Algebra Tutor: Volume 1 Section 1 Real Numbers

Supplemental Worksheet Problems To Accompany: The Pre-Algebra Tutor: Volume 1 Section 1 Real Numbers Supplemental Worksheet Problems To Accompany: The Pre-Algebra Tutor: Volume 1 Please watch Section 1 of this DVD before working these problems. The DVD is located at: http://www.mathtutordvd.com/products/item66.cfm

More information

Audacity. For use with MFL Speaking Tests. User Guide (Microsoft Windows version)

Audacity. For use with MFL Speaking Tests. User Guide (Microsoft Windows version) Audacity For use with MFL Speaking Tests User Guide (Microsoft Windows version) Table of Contents Introduction... 3 1 Installation... 3 1.1 Installing Audacity... 3 1.2 Installing Lame MP3 Encoder... 6

More information

FileBound: Internet Settings & Requirements

FileBound: Internet Settings & Requirements If you (or your PC!) is new to the FileBound v4 application, There are a few quick items that need to be addressed to ensure you will be able to access the image viewer section of the system. Minimum Requirements

More information

How to respond to our offer

How to respond to our offer Buckinghamshire County Council How to respond to our offer You should read this document and Section 2 of the Starting School or Moving up to Junior School guide before you respond to our online offer

More information

Advanced Client Phone Training

Advanced Client Phone Training Advanced Client Phone Training Interaction Client Last Updated December 19, 2008 This document outlines advanced features and configuration of the Interaction Client. DVS, Inc. 60 Revere Dr., Suite 201

More information

ABSORBENCY OF PAPER TOWELS

ABSORBENCY OF PAPER TOWELS ABSORBENCY OF PAPER TOWELS 15. Brief Version of the Case Study 15.1 Problem Formulation 15.2 Selection of Factors 15.3 Obtaining Random Samples of Paper Towels 15.4 How will the Absorbency be measured?

More information

THE WINNING ROULETTE SYSTEM.

THE WINNING ROULETTE SYSTEM. THE WINNING ROULETTE SYSTEM. Please note that all information is provided as is and no guarantees are given whatsoever as to the amount of profit you will make if you use this system. Neither the seller

More information

Zero-knowledge games. Christmas Lectures 2008

Zero-knowledge games. Christmas Lectures 2008 Security is very important on the internet. You often need to prove to another person that you know something but without letting them know what the information actually is (because they could just copy

More information

Measurement Tools in Inventor

Measurement Tools in Inventor WP-MFG-00232 September 2012 David Gate Measurement Tools in Inventor A summary of the measurement tools within Inventor and showing some of their many uses. All Inventor Users The Measurement Tools within

More information

Horizon End User Guide

Horizon End User Guide Horizon End User Guide Contents How do I gain access to the Horizon website?... 4 How do I change my password?... 4 Logging in as the End User... 5 How do I customise my Dashboard?... 5 How do I initially

More information

HGC SUPERHUB HOSTED EXCHANGE EMAIL

HGC SUPERHUB HOSTED EXCHANGE EMAIL HGC SUPERHUB HOSTED EXCHANGE EMAIL OUTLOOK 2010 POP3 SETUP GUIDE MICROSOFT HOSTED COMMUNICATION SERVICE V2013.5 Table of Contents 1. Get Started... 1 1.1 Start from Setting up an Email account... 1 1.2

More information

Android Programming Family Fun Day using AppInventor

Android Programming Family Fun Day using AppInventor Android Programming Family Fun Day using AppInventor Table of Contents A step-by-step guide to making a simple app...2 Getting your app running on the emulator...9 Getting your app onto your phone or tablet...10

More information

Measuring Resistance Using Digital I/O

Measuring Resistance Using Digital I/O Measuring Resistance Using Digital I/O Using a Microcontroller for Measuring Resistance Without using an ADC. Copyright 2011 John Main http://www.best-microcontroller-projects.com Page 1 of 10 Table of

More information

Submit Employee Time Section

Submit Employee Time Section Submit Employee Time Section Located under the Actions section (Employee Home page), the options that allow employees to enter work time transactions in Paychex Time and Labor Online are listed below.

More information

Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client

Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client Quick Reference Guide 1 Lync for Mac 2011 Using Lync 2011 Client r Lync for Mac 2011 is the latest instant messaging (IM) client from Microsoft for the Macintosh platform and is the upgrade to Microsoft

More information

MAKE AN A-MAZE-ING GAME

MAKE AN A-MAZE-ING GAME STEM Fuse GAME:IT MAKE AN A-MAZE-ING GAME In this assignment, you will create your own maze game using Game Maker. The game you create will be a simple maze game. The object of the game will be for the

More information

Creating an Event Registration Web Page with Special Features using regonline Page 1

Creating an Event Registration Web Page with Special Features using regonline Page 1 Creating an Event Registration Web Page with Special Features using regonline 1. To begin, enter www.regonline.com in your browser s address bar. A red arrow on each screen shot shows you where to place

More information

The first program: Little Crab

The first program: Little Crab CHAPTER 2 The first program: Little Crab topics: concepts: writing code: movement, turning, reacting to the screen edges source code, method call, parameter, sequence, if-statement In the previous chapter,

More information

MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7

MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7 MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7 In this tutorial, you will learn how to create your first game in Game Maker. The game you will create will be a simple maze game. The object of the game

More information

2 The first program: Little Crab

2 The first program: Little Crab 2 The first program: Little Crab topics: concepts: writing code: movement, turning, reacting to the screen edges source code, method call, parameter, sequence, if statement In the previous chapter, we

More information

How to Build a Simple Pac-Man Game

How to Build a Simple Pac-Man Game How to Build a Simple Pac-Man Game For today's program, we are going to build a simple Pac-Man game. Pac-Man was one of the very first arcade games developed around 1980. For our version of Pac-Man we

More information

An Australian Microsoft Partners in Learning (PiL) Project

An Australian Microsoft Partners in Learning (PiL) Project An Australian Microsoft Partners in Learning (PiL) Project 1 Learning objects - Log on to the website: http://www.curriculumsupport.education.nsw.gov.au/countmein/ - Select children Select children - This

More information

Freegal Frequently Asked Questions

Freegal Frequently Asked Questions Freegal Frequently Asked Questions GENERAL What is Freegal? Freegal is a downloadable music service from the Hudson Area Library. All you need to use Freegal is your last name and your library card number.

More information

Clickfree C6 Easy Imaging October 24, 2011

Clickfree C6 Easy Imaging October 24, 2011 HOW LONG WILL THE FIRST BACKUP TAKE? Clickfree Total Computer Backup can take a few hours to complete when first plugged in. Since Clickfree will copy absolutely everything from your computer (including

More information

SweetPea3R-200 User Guide Version 1.1

SweetPea3R-200 User Guide Version 1.1 SweetPea3R-200 User Guide Version 1.1 For safety and warranty information, please refer to the Quick Start Guide included in the box with your unit. Thank you for purchasing a SweetPea3. As this is a new

More information

Media Backup Storage Device. Operation Manual

Media Backup Storage Device. Operation Manual Media Backup Storage Device CGA-02540 - Black CGA-02541 - White Operation Manual 20061201 Page 1 of 23 CONGRATULATIONS on your purchase of a Polaroid media backup storage device. Please read carefully

More information

High Power Internet Radio

High Power Internet Radio High Power Internet Radio User Manual Safety Warnings Internet Radio Quick Start Guide 1 1. What you need before you can use your Internet radio...1 2. Controls...1 3. Connecting your radio to your wireless

More information

Suggested FaceBook Privacy Settings

Suggested FaceBook Privacy Settings Suggested FaceBook Privacy Settings Copyright Hilden Oaks School 2010. Published under a Creative Commons Attribution/Share-alike license, see http://creativecommons.org/licenses/by-sa/3.0/ Disclaimer:

More information

1. Starting With Windows Live Essentials

1. Starting With Windows Live Essentials 17 1. Starting With Windows Live Essentials You probably already know a little about Windows Live Hotmail and you may also be familiar with the Windows Live Messenger program. This program used to be called

More information

Central England People First s friendly guide to downloading

Central England People First s friendly guide to downloading Central England People First s friendly guide to downloading What is Skype? Skype is a computer programme that turns your computer into a telephone. This means that you can speak to other people using

More information

VHS Copying with Nursing Mobile Recorder

VHS Copying with Nursing Mobile Recorder VHS Copying with Nursing Mobile Recorder To Setup Equipment: 1. Remove recorder, power supply, and audio dongle (red and white) from bag. 2. Connect audio dongle to recorder. 3. Connect red/white audio

More information

Jive Connects for Openfire

Jive Connects for Openfire Jive Connects for Openfire Contents Jive Connects for Openfire...2 System Requirements... 2 Setting Up Openfire Integration... 2 Configuring Openfire Integration...2 Viewing the Openfire Admin Console...3

More information

Using our Club website to manage team Practice Schedules

Using our Club website to manage team Practice Schedules Login to www.somersethillslacrosse.com Parents who are new to our programs often ask How do you schedule practices, coach? and for most of us the answer is Make sure I have your correct email address!

More information

REFERENCE GUIDE 1. INTRODUCTION

REFERENCE GUIDE 1. INTRODUCTION 1. INTRODUCTION Scratch is a new programming language that makes it easy to create interactive stories, games, and animations and share your creations with others on the web. This Reference Guide provides

More information

Welcome to Weet-Bix MyCricket & MILO in2cricket

Welcome to Weet-Bix MyCricket & MILO in2cricket Welcome to Weet-Bix MyCricket & MILO in2cricket Please take a few minutes to read through this getting started guide, which gives an overview of how to set up MILO in2cricket for your Centre and how to

More information

STEP 5: Giving Feedback

STEP 5: Giving Feedback STEP 5: Giving Feedback Introduction You are now aware of the responsibilities of workplace mentoring, the six step approach to teaching skills, the importance of identifying the point of the lesson, and

More information

Use fireworks and Bonfire night as a stimulus for programming

Use fireworks and Bonfire night as a stimulus for programming Learn it: Scratch Programming Make fireworks in Scratch Use fireworks and Bonfire night as a stimulus for programming Create an animated bonfire Design and program a working Catherine wheel Design and

More information

Windows Live Movie Maker Tutorial

Windows Live Movie Maker Tutorial Introduction Welcome to the Windows Live Movie Maker (WLMM) Tutorial. This tutorial will help you create, edit, and finalize your WLMM video project. Table of Contents Creating and Saving a Project.. Importing

More information

Printed in China. Issue 1.2 AT&T 03/07. Advanced American Telephones. AT&T and the AT&T logo are trademarks of AT&T Knowledge Ventures, licensed to

Printed in China. Issue 1.2 AT&T 03/07. Advanced American Telephones. AT&T and the AT&T logo are trademarks of AT&T Knowledge Ventures, licensed to 2007 Advanced American Telephones. All rights reserved. AT&T and the AT&T logo are trademarks of AT&T Knowledge Ventures, licensed to Advanced American Telephones. Printed in China. Issue 1.2 AT&T 03/07

More information

Purchasing Online Through TicketAtlantic.com

Purchasing Online Through TicketAtlantic.com Purchasing Online Through TicketAtlantic.com BEFORE PURCHASING: - For optimum use, please check browser requirements (see Welcome page) and delete cookies and temp files ('Tools' menu at top of page, then

More information

How to Post a Job Ad. May 2010

How to Post a Job Ad. May 2010 How to Post a Job Ad May 2010 1. Posting A New Job Ad New Client (Not Registered) The registration process is very straight forward. From the Advertisers section, select Post a Job Ad from the Quick Links

More information

Auto Clicker Tutorial

Auto Clicker Tutorial Auto Clicker Tutorial This Document Outlines Various Features of the Auto Clicker. The Screenshot of the Software is displayed as below and other Screenshots displayed in this Software Tutorial can help

More information

Activating Wake on LAN/Remote Access for Your Office Computer

Activating Wake on LAN/Remote Access for Your Office Computer EXSEED Client Integration Testing Version 1.0 Activating Wake on LAN/Remote Access for Your Office Computer This guide is intended to show you how to activate your office computer for the Wake on LAN service,

More information

USEFUL HINTS & TIPS ALCATEL ONE TOUCH 993. better BUSINESS

USEFUL HINTS & TIPS ALCATEL ONE TOUCH 993. better BUSINESS USEFUL HINTS & TIPS ALCATEL ONE TOUCH 993 We really value your feedback on this useful hints & tips guide. If you feel anything is missing, or anything could be made clearer, please send your feedback

More information

The Bet Plan Bot Manual

The Bet Plan Bot Manual The Bet Plan Bot Manual The Bet Plan bot can load selections and place bets on auto pilot. It has been developed specially for TheBetPlan customers. There are two versions available for Betfair and Betdaq.

More information

User Programming. The Touch Screen Control Panel is activated by pressing a finger on the given area/menu point. Brew4You User Programming

User Programming. The Touch Screen Control Panel is activated by pressing a finger on the given area/menu point. Brew4You User Programming User Programming Introduction The range of Brew4You systems can be programmed in order to assure, that the brewing proces are carried out automatically and strictly according to the parameters set by the

More information

22 COMPETITIVE MARKETS IN THE LONG-RUN

22 COMPETITIVE MARKETS IN THE LONG-RUN 22 COMPETITIVE MARKETS IN THE LONG-RUN Purpose: To illustrate price determination in the long-run in a competitive market. Computer file: lrmkt198.xls Instructions and background information: You are a

More information

Xylophone. What You ll Build

Xylophone. What You ll Build Chapter 9 Xylophone It s hard to believe that using technology to record and play back music only dates back to 1878, when Edison patented the phonograph. We ve come so far since then with music synthesizers,

More information

The Cancer Institute NSW Grants Management System User Guide

The Cancer Institute NSW Grants Management System User Guide The Cancer Institute NSW Grants Management User Guide Version 1.1 12 February 2016 Contents 1. Registration 2 2. Login to the Institute s GMS 3 3. Forgot password 3 4. The home page 4 5. Creating a profile

More information

Lesson 8: Simon - Arrays

Lesson 8: Simon - Arrays Lesson 8: Simon - Arrays Introduction: As Arduino is written in a basic C programming language, it is very picky about punctuation, so the best way to learn more complex is to pick apart existing ones.

More information

Adobe Acrobat 6.0 Professional

Adobe Acrobat 6.0 Professional Adobe Acrobat 6.0 Professional Manual Adobe Acrobat 6.0 Professional Manual Purpose The will teach you to create, edit, save, and print PDF files. You will also learn some of Adobe s collaborative functions,

More information

Advanced Blackboard 9.1 Features

Advanced Blackboard 9.1 Features Advanced Blackboard 9.1 Features Asynchronous Communication Tools Discussion Board Blogs Journals Wikis Assessment Assignments Grade Center LinkMaker Wimba Tests, Surveys and Question Pools Asynchronous

More information

Advanced Programming with LEGO NXT MindStorms

Advanced Programming with LEGO NXT MindStorms Advanced Programming with LEGO NXT MindStorms Presented by Tom Bickford Executive Director Maine Robotics Advanced topics in MindStorms Loops Switches Nested Loops and Switches Data Wires Program view

More information

and forms from multiple folders simultaneously to send out for e signing as the system will automatically create a Queue as you select documents.

and forms from multiple folders simultaneously to send out for e signing as the system will automatically create a Queue as you select documents. This guide was prepared to show our members how to submit saved forms (and/or uploaded documents) out for e signature using our built in integration with Settleware s secure e signing services. Once you

More information

VIBRATION WATCH with: Vibration Alarm (won't disturb others). Beep Alarm (optional) Electro-Luminescent (EL) back light (for viewing display at

VIBRATION WATCH with: Vibration Alarm (won't disturb others). Beep Alarm (optional) Electro-Luminescent (EL) back light (for viewing display at VIBRATION WATCH with: Vibration Alarm (won't disturb others). Beep Alarm (optional) Electro-Luminescent (EL) back light (for viewing display at night). Second Clock (great when traveling in a different

More information

SELF-PACED POLLING WITH INSIGHT 360

SELF-PACED POLLING WITH INSIGHT 360 Self-Paced Polling with Insight 360 1 SELF-PACED POLLING WITH INSIGHT 360 Plan Installing the Software 1 Turn on the classroom computer. 2 Select the DVD that is compatible with your computer s operating

More information

QaTraq Pro Scripts Manual - Professional Test Scripts Module for QaTraq. QaTraq Pro Scripts. Professional Test Scripts Module for QaTraq

QaTraq Pro Scripts Manual - Professional Test Scripts Module for QaTraq. QaTraq Pro Scripts. Professional Test Scripts Module for QaTraq QaTraq Pro Scripts Professional Test Scripts Module for QaTraq QaTraq Professional Modules QaTraq Professional Modules are a range of plug in modules designed to give you even more visibility and control

More information

Business Software Solutions. Business Plus Accounting Touch POS Quick Start Guide

Business Software Solutions. Business Plus Accounting Touch POS Quick Start Guide Business Software Solutions Business Plus Accounting Touch POS Quick Start Guide Contents Initial System Startup... 3 Defining Employees... 4 Creating Your Sales Menu... 5 Adding Product Information to

More information

Aura Kitchen Monitor. 2012 Coherent Software Solutions

Aura Kitchen Monitor. 2012 Coherent Software Solutions Part Introduction I 1 Introduction Introduction Kitchen Items is an alternative method for alerting kitchen staff about new orders waiting to be prepared. When compared to the standard method of passing

More information

THE LIMES MEDICAL CENTRE. Patient Access User Guide 2014. Edition 1

THE LIMES MEDICAL CENTRE. Patient Access User Guide 2014. Edition 1 THE LIMES MEDICAL CENTRE Patient Access User Guide 2014 Edition 1 Patient Access Patient Access allows you to access The Limes Medical Centre s on-line and text messaging services. Patients can book routine

More information

Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin

Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin Service Desk R11.2 Upgrade Procedure - Resetting USD passwords and unlocking accounts in etrust Web Admin Purpose of document The purpose of this document is to assist users in reset their USD passwords

More information

When you and your students are saving your files, under the File menu of MovieMaker, save your file as a project rather than a movie:

When you and your students are saving your files, under the File menu of MovieMaker, save your file as a project rather than a movie: MOVIE MAKER Before you use Movie Maker: Windows Movie Maker is a program that is free with any machine operating Windows XP (which is, basically, the sort of machine that Year Up uses with its students).

More information

2. Log in to the website with your online account, and from the Profile menu, select Redeem Promo code.

2. Log in to the website with your online account, and from the Profile menu, select Redeem Promo code. How to Redeem Codes on the website (any platform): 1. First make sure you have an EA online account. a. For a walkthrough on how to create your EA online account on the PC game, Xbox 360 videogame and

More information

Take-Home Exercise. z y x. Erik Jonsson School of Engineering and Computer Science. The University of Texas at Dallas

Take-Home Exercise. z y x. Erik Jonsson School of Engineering and Computer Science. The University of Texas at Dallas Take-Home Exercise Assume you want the counter below to count mod-6 backward. That is, it would count 0-5-4-3-2-1-0, etc. Assume it is reset on startup, and design the wiring to make the counter count

More information

ThermochronWM22 Application for Windows Mobile Getting Started. Step 1: Install PC Applications... 2. Step 2: Install USB Adapter...

ThermochronWM22 Application for Windows Mobile Getting Started. Step 1: Install PC Applications... 2. Step 2: Install USB Adapter... ThermochronWM22 Application for Windows Mobile Getting Started Step 1: Install PC Applications... 2 Step 2: Install USB Adapter... 2 Step 3. Setup Microsoft ActiveSync On your PC... 2 Step 4: Copy the

More information

DVDgame Installation Instructions

DVDgame Installation Instructions The DVD Game uses a computer capable of playing/displaying a DVD (or other video presentation) and modifying the video presentation in response to the client's rewardable state. The game currently uses

More information

There are a number of superb online resources as well that provide excellent blackjack information as well. We recommend the following web sites:

There are a number of superb online resources as well that provide excellent blackjack information as well. We recommend the following web sites: 3. Once you have mastered basic strategy, you are ready to begin learning to count cards. By counting cards and using this information to properly vary your bets and plays, you can get a statistical edge

More information

Minimax Strategies. Minimax Strategies. Zero Sum Games. Why Zero Sum Games? An Example. An Example

Minimax Strategies. Minimax Strategies. Zero Sum Games. Why Zero Sum Games? An Example. An Example Everyone who has studied a game like poker knows the importance of mixing strategies With a bad hand, you often fold But you must bluff sometimes Lectures in Microeconomics-Charles W Upton Zero Sum Games

More information

How to Backtest Expert Advisors in MT4 Strategy Tester to Reach Every Tick Modelling Quality of 99% and Have Real Variable Spread Incorporated

How to Backtest Expert Advisors in MT4 Strategy Tester to Reach Every Tick Modelling Quality of 99% and Have Real Variable Spread Incorporated How to Backtest Expert Advisors in MT4 Strategy Tester to Reach Every Tick Modelling Quality of 99% and Have Real Variable Spread Incorporated MetaTrader 4 can reach 90% modelling quality at its best by

More information

Horse Races Trader Bot aka Trader Bot

Horse Races Trader Bot aka Trader Bot Horse Races Trader Bot aka Trader Bot - trading on any event with single winner - - Updated on 1 st March 2015-1 Contents 1. Strategy... 3 2. Bot controls... 5 3. Wallet controls... 6 4. Bf Bot Manager

More information

User s Guide for the Texas Assessment Management System

User s Guide for the Texas Assessment Management System User s Guide for the Texas Assessment Management System Version 8.3 Have a question? Contact Pearson s Austin Operations Center. Call 800-627-0225 for technical support Monday Friday, 7:30 am 5:30 pm (CT),

More information

CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL INCLUDES CISCO CALLMANAGER ATTENDANT CONSOLE. Getting Started Manual

CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL INCLUDES CISCO CALLMANAGER ATTENDANT CONSOLE. Getting Started Manual CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL INCLUDES CISCO CALLMANAGER ATTENDANT CONSOLE Getting Started Manual... 3 Getting Started... 3 Using LCD Icons... 3 Using the IP Phone Configuration Utility...

More information

hp calculators HP 17bII+ Net Present Value and Internal Rate of Return Cash Flow Zero A Series of Cash Flows What Net Present Value Is

hp calculators HP 17bII+ Net Present Value and Internal Rate of Return Cash Flow Zero A Series of Cash Flows What Net Present Value Is HP 17bII+ Net Present Value and Internal Rate of Return Cash Flow Zero A Series of Cash Flows What Net Present Value Is Present Value and Net Present Value Getting the Present Value And Now For the Internal

More information

Here are some scrappy notes about MRBS, or the club s booking system.

Here are some scrappy notes about MRBS, or the club s booking system. Here are some scrappy notes about MRBS, or the club s booking system. MRBS stands for meeting room booking system. It s free, works well and there s little else which does the job as efficiently, so the

More information

Teachers should read through the following activity ideas and make their own risk assessment for them before proceeding with them in the classroom.

Teachers should read through the following activity ideas and make their own risk assessment for them before proceeding with them in the classroom. Mathematical games Teacher notes Teachers should read through the following activity ideas and make their own risk assessment for them before proceeding with them in the classroom. Aims: To use mathematics

More information

Create a Basic Skype* Account. Intel Easy Steps 1 2012 Intel Corporation All rights reserved.

Create a Basic Skype* Account. Intel Easy Steps 1 2012 Intel Corporation All rights reserved. Create a Basic Skype* Account Intel Easy Steps 1 2012 Intel Corporation Using Skype* to Communicate: Create and use a Basic Skype Account There are different ways of communicating and sharing through the

More information

CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL. Getting Started Manual

CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL. Getting Started Manual CISCO IP PHONE MODEL 7960 & UNITY VOICEMAIL Getting Started Manual... 3 Getting Started... 3 Using LCD Icons... 3 Using the IP Phone Configuration Utility... 3 Tips... 3 How to Use the Handset, Speakerphone,

More information

Enterprise Edge Call Center Agent User Guide

Enterprise Edge Call Center Agent User Guide Enterprise Edge Call Center Agent User Guide 1-800-4 NORTEL www.nortelnetworks.com 1999 Nortel Networks Enterprise Edge Call Center Agent User Card Enterprise Edge Call Center is an automatic call distribution

More information

XWING TOURNAMENTS UK GAMES EXPO 2016

XWING TOURNAMENTS UK GAMES EXPO 2016 XWING TOURNAMENTS UK GAMES EXPO 2016 This guide is designed to explain and help you through the process of pre-registering, attending and playing in the various X-Wing Tournaments that are being held over

More information

Easy Casino Profits. Congratulations!!

Easy Casino Profits. Congratulations!! Easy Casino Profits The Easy Way To Beat The Online Casinos Everytime! www.easycasinoprofits.com Disclaimer The authors of this ebook do not promote illegal, underage gambling or gambling to those living

More information

An Introduction to K12 s Online School (OLS)

An Introduction to K12 s Online School (OLS) An Introduction to K12 s Online School (OLS) 1 Introducing the Online School (OLS)... 6 Logging In... 6 OLS Home page... 8 My Account Menu... 9 To Edit Basic Account Information for Yourself... 9 Tip:

More information

Offline Files & Sync Center

Offline Files & Sync Center bonus appendix Offline Files & Sync Center The offline files feature is designed for laptop lovers. It lets you carry off files that gerally live on your office network, so you can get some work done while

More information

The goal is to program the PLC and HMI to count with the following behaviors:

The goal is to program the PLC and HMI to count with the following behaviors: PLC and HMI Counting Lab The goal is to program the PLC and HMI to count with the following behaviors: 1. The counting should be started and stopped from buttons on the HMI 2. The direction of the count

More information

Icecream Screen Recorder. User Manual

Icecream Screen Recorder. User Manual Icecream Screen Recorder User Manual 2016 1. Overview System Requirements OS Icecream Screen Recorder is compatible with the following versions of Windows: Windows Vista, Windows 7, Windows 8 and Windows

More information

EC313 - VHDL State Machine Example

EC313 - VHDL State Machine Example EC313 - VHDL State Machine Example One of the best ways to learn how to code is seeing a working example. Below is an example of a Roulette Table Wheel. Essentially Roulette is a game that selects a random

More information

Samsung Drive Manager FAQ

Samsung Drive Manager FAQ Samsung Drive Manager FAQ Installation Q: My Samsung External Hard Drive is connected but nothing is happening. A: Check the USB cable connection. If your Samsung External Hard Drive is connected properly,

More information

ADT Select User Manual. 131 ADT www.adtsecurity.com.au ACN 008 399 004

ADT Select User Manual. 131 ADT www.adtsecurity.com.au ACN 008 399 004 ADT Select User Manual 131 ADT www.adtsecurity.com.au ACN CONTENTS FOREWORD 3 LOGGING IN 4 FUNCTIONS OF INTROPAGE 5 PLACING A SYSTEM ON TEST 8 EMERGENCY CONTACTS 9 DISPATCH INSTRUCTIONS 11 EVENT HISTORY

More information

Get the message wherever you are Call Minder User Guide

Get the message wherever you are Call Minder User Guide Get the message wherever you are Call Minder User Guide Now with Call Minder Let your mobile keep you in touch See page for more details. Use Remote Access to listen to your messages from a different phone

More information

Cisco 7912 Users Guide

Cisco 7912 Users Guide Cisco 7912 Users Guide Cisco IP Phone 7912 Road Map to your Cisco IP Phone 1 2 LCD Screen Cisco IP Phone series type 3 Soft Keys 4 5 6 Navigation button Menu Button Hold Button 7 Dial Pad Volume 8 Button

More information

Clickers Basic Windows Training Session. Downloading TurningPoint: 5.3.1 Software

Clickers Basic Windows Training Session. Downloading TurningPoint: 5.3.1 Software Clickers Basic Windows Training Session Today s Session 1. Clickers Overview 2. Exercises (Hands On) Downloading TurningPoint: 5.3.1 Software TurningPoint software is available for free to all University

More information

JUNGHANS MEGA ALARM-CHRONO W 615.33

JUNGHANS MEGA ALARM-CHRONO W 615.33 JUNGHANS MEGA ALARM-CHRONO W 615.33 reset set + mode set GB Contents Page 1. Wireless technology 52 53 2. Readiness for use 54 55 3. Automatic time synchronisation 56 4. Functions 57 4.1. Base mode 58

More information

Chapter 2. Making Shapes

Chapter 2. Making Shapes Chapter 2. Making Shapes Let's play turtle! You can use your Pencil Turtle, you can use yourself, or you can use some of your friends. In fact, why not try all three? Rabbit Trail 4. Body Geometry Can

More information