The Key to Adventure Beta

Size: px
Start display at page:

Download "The Key to Adventure Beta"

Transcription

1 This sample chapter is for review purposes only. Copyright The Goodheart-Willcox Co., Inc. All rights reserved. Name: Lesson 10 The Key to Adventure Beta Objectives Students will modify an existing game to include more interactivity. Students will design and implement an explosion and key objectives. Students will program path movements for enemy obstacles. Students will program the proper function to provide the player with three lives. 152 Introduction to Video Design Situation Date: Class: The creative director has reviewed your alpha game build from Lesson 9. The maze functions well, but the game needs more immersion. You have been assigned the task of learning about game immersion and challenges versus rewards within games. Later, you will improve the game. How to Begin 1. Read the passage below. 2. Complete the review questions. 3. Turn in all materials. 4. Complete the game build. Reading Materials A game with little challenge will quickly become boring for the player. In the Maze game from Lesson 9, there is very little challenge, or difficulty. This makes the game easy to play, but not very interesting to play after the first time. By adding difficulty, objectives, missions, tasks, and obstacles, the player can become more immersed in the action of the game. Immersion is the degree to which a player connects with the game world. Critical to immersion and the success of any game is the association of risk to reward. Risk is making a move that could cause damage to the player s character. For example, a player takes a risk when jumping over a hole. If the player jumps too soon, the character will fall in the hole and lose a life. In this way, the player takes a risk in jumping over the hole. For every risk, there must be a reward. A reward is a benefit given to the player. In the case of the hole, the game programmer might place a coin or other token on the opposite side of the hole that the player must collect to score points. Without the reward, the player would probably just avoid the hole and find another path. When creating an obstacle or hazard, like an enemy or a hole, the programmer must always balance the risk with the reward. Jumping a hole might get the player to a coin. Defeating an enemy might give the player a new ability. The reward must be great enough to make the player take the risk of injury to the character or defeat. Another element that needs to be looked at when designing a game is the skill level of the player. Part of the approval process for a game idea is to select a target audience. The target audience is the typical player that might purchase the game. Usually, a target audience is separated from everyone else by specific demographics. Demographics are observable features of a person, including age, gender, income, education, cultural background, and so on. If the target audience is 8-year-old boys, a cartoon-style game based on the popular Scooby Doo character may be appropriate. On the other hand, if the target audience is 20-year-old college students, the game would likely need to require greater skill and have more action than the game designed for a younger age group. The age and skill of the target audience help determine the amount of challenge and action needed in a game. A successful game must have skill progression. Skill progression describes how a game starts easy and gets harder as the player progresses through levels. By increasing the skill required to complete higher levels, the game presents increasing challenges to the player. Skill progression Lesson 10 The Key to Adventure Beta 153

2 also helps teach the player how to properly play the game. The first level is easy so the player can learn how to use the controls and discover the moves needed to play the game. In the second level, more challenges are added and the level is slightly more difficult than the first. Each level continues to add more difficult challenges until the final level, which should be the most difficult to complete. When creating difficulty, remember the ultimate goal of the player is to defeat the game by achieving the victory condition. There is a progression of challenges that lead to the victory condition. Atomic challenges are the smallest possible challenges. This term comes from the atom, which is the smallest particle of an element. Atomic challenges are simple, like jumping a hole or hitting a target. By combining atomic challenges, sub-missions are created. Sub-missions are tasks that need to be completed in the game. A sub-mission might be collecting 100 coins, finding a key, or other in-game challenges. All of the sub-missions combine to form a game mission. A mission is a combination of sub-missions needed to complete a major set of tasks within the game. A mission is often completing a game level from beginning to end. For example, a mission might be to destroy all enemies on the level and collect supplies needed for advanced levels. After completing all of the missions, the game is over and the player is victorious. This is the final victory condition that ends the game. In addition to understanding skill progression and challenges, the designer must understand the emotion of the player. In some cases, the player might get frustrated trying to defeat an enemy or overcome an obstacle. The player will likely stop playing if the character repeatedly dies and the player has to start over from the beginning. Repeating the same tasks over and over again gets boring. Additionally, the feeling of joy from defeating a powerful enemy might be shortlived if the player later does something that requires battling the same enemy again. To avoid these conditions, designers use checkpoints and bonus lives. A checkpoint is a saved location in the game from where the player can restart if the character dies. A bonus life is often used as a reward for the player taking the risk of battling powerful enemies or achieving a certain score. Together, checkpoints and lives allow the player to test different strategies in the game through trial and error. Eventually, the player can learn the correct choices to achieve victory. A designer needs to understand how to properly build challenge throughout the game. Each atomic challenge, sub-mission, and mission must meet the needs of the game and provide adequate reward. Taken together, these challenges must also be appropriate to the age and skill of the target audience. Finally, these challenges must build throughout the game to teach the player and allow for skill building. Every game should be made so a player can eventually build enough skill to make it to the end and achieve the victory condition. In the end, a player should have enjoyed the game and not feel frustrated. 3. risk: 4. reward: 5. target audience: 6. demographics: 7. skill progression: 8. progression of challenges: 9. atomic challenges: 10. mission: Review Questions Review Questions and Activities Vocabulary Questions Write a definition for each of the terms listed below. 1. challenge: 2. immersion: 11. An atom is the smallest particle of an element. Research atomic structure, then describe the parts of an atom. Applied Technology Language Arts Mathematics Science Social Science 154 Introduction to Video Design Lesson 10 The Key to Adventure Beta 155

3 12. List four of your favorite games and describe how the game designers used checkpoints to help the player during gameplay. Situation After reviewing your alpha game build from Lesson 9, the creative director has determined it needs more adventure! You will now improve the game by adding features such as doors that need to be exploded open, locks and keys, and enemies guarding the objectives. Do a good job; your performance evaluation will be coming up soon. You want a good evaluation! 13. Suppose a game rewards the player with a bonus life at 1000 points, with each bonus life rewarded after scoring another 1000 points plus 10% of the previous reward level. For example, the second bonus life is rewarded at a score of 2100 points. What score must be achieved to obtain a fifth bonus life? Extra Life Score Plus % of Previous Score Total Score Needed Research video game addiction. Write an explanation of what role you feel immersion plays in this condition. 15. Research the demographics of your town. List five demographics that you feel are key to describing your community. Describe what you think the statistics say about your community. How to Begin 1. Open the Maze game from Lesson 9 and save it as LastName_Maze_Beta. 2. In the previous lesson, you created some sprites and objects that were not used. You will use them in this lesson, along with the following sprites and objects. Create all objects as visible and solid. Sprite Name Image File Object Name SPR_Detonator_Down \Sprites\Maze-Platform\ OBJ_Detonator_Down detonator_on.png SPR_Detonator_Up \Sprites\Maze-Platform\ OBJ_Detonator_Up detonator_off.png SPR_Diamond \Sprites\Maze-Platform\ OBJ_Diamond diamond_sparkle_strip32.png SPR_Dynamite_Pack \Sprites\Maze-Platform\ OBJ_Dynamite_Pack dynamite_pack.png SPR_Dynamite_Stick \Sprites\Maze-Platform\ OBJ_Dynamite_Stick dynamite.png SPR_Explosion \Sprites\Maze-Platform\ OBJ_Explosion explosion strip7.png SPR_Spider \Sprites\Maze-Platform\ spider_down_strip8.png OBJ_Spider Applied Technology Language Arts Mathematics Science Social Science Obstacle Barriers To make the game more challenging, you will add barriers. Barriers are objects that block pathways. The player must either destroy the barriers or figure out some other way to get around them. 3. Open the Room Properties dialog box for the Level 1 room. 4. Place instances of the doors object to block the exit to the maze, Figure To place them on top of the exit objects already in place, uncheck the Delete underlying check box. It is important to keep the exit objects because they contain the programming for moving from room to room. 5. Open the Object Properties dialog box for the OBJ_Doors object. 6. Program the door object such that IF the avatar collides with the door, THEN the avatar movement stops. 156 Introduction to Video Design Lesson 10 The Key to Adventure Beta 157

4 Locks added Detonator Dynamic pack Doors added Figure 10-1 Figure In a different location, place a couple of locks to block the explorer s path. 8. Open the Object Properties dialog box for the OBJ_Lock_Gold object. 9. Program the lock object such that IF the avatar collides with the lock, THEN the avatar movement stops. 10. Test play the game. Now the player cannot reach the exit. If you have placed the doors on top of the exit objects and the player can still navigate to the next room, you will need to move the doors and exit objects so the avatar collides with the doors before reaching the exit objects. 11. Save your work. Barrier Demolition Another way to clear a barrier is to blow it up. This is more fun! The explorer happens to be a demolition expert and gets to use dynamite to blow up the doors and other objects. So cool! Note: the dynamite is also considered a passage key. You will do some advance programming in a bit, but first get the basics done right. 15. In the Level 1 room, place an instance of the OBJ_Dynamite_Pack object somewhere between the starting position and the doors, Figure Place the OBJ_Detonator_Up object in a place between the dynamite pack and the doors. This should be in a place that will shield the avatar from the dynamite blast, like behind a wall. 17. Open the Object Properties dialog box for the OBJ_Avatar object. You will program this logic statement: IF the player presses the space bar, THEN create an instance of the OBJ_Dynamite_Stick object at (16, 16) relative to the player. This will place a stick of dynamite just above the avatar s head. 18. Add an event for the player pressing the space bar. 19. Drag the Create Instance button from the Main 1 tab and drop it into the Actions: column. 20. In the Create Instance dialog box, click the Self radio button, Figure Passage Keys To allow the player to pass through a barrier, a passage key must be placed within the game. The passage key need not be an actual key. It can be anything used to eliminate the barrier. You will program two different passage keys to allow the player to get through the doors and locks. 12. In the Level 1 room, place one instance of the gold key in a location where the player can access it before reaching the lock barrier. 13. Open the Object Properties dialog box for the OBJ_Avatar object. 14. Program the key such that IF the avatar collides with the key, THEN destroy the key AND destroy the locks. Since the lock barriers will be destroyed, the player can get past the barrier. 21. Click in the Object: text box and select the dynamite stick object from the shortcut menu. This is the object that will be created. 22. Enter 16 in the X: text box and 16 in the Y: text box. 23. Check the Relative check box and click the OK button to save the action. 24. Close the Object Properties dialog box, saving the changes. Create Instance 158 Introduction to Video Design Lesson 10 The Key to Adventure Beta 159

5 Apply the instance to the avatar Block of code for exploding the dynamite Enter the location Select the object to create Make the location relative to the avatar Figure 10-3 Figure 10-4 Next, you need to program the detonator so when the player pushes down the handle, the dynamite sticks explode. The logic statement for this is: IF the avatar collides with the OBJ_Detonator_Up object, THEN change the OBJ_Detonator_Up object to the OBJ_Detonator_Down object AND create an explosion AND destroy the dynamite stick. Blowing up the Doors To make the doors blow up and allow the avatar to pass, programming needs to be added to the OBJ_Explode object. This will also correct the problem with the repeating explosion. 36. Open the Object Properties dialog box for the OBJ_Explosion object. 37. Program this logic statement: IF the explosion collides with the doors, THEN destroy the doors. Note: this is an example where you might want to use the Other setting because using the Object setting will destroy all doors. 38. Program this logic statement: IF the explosion animation ends, THEN destroy the explosion. See Figure Start Block 25. Open the Object Properties dialog box for the OBJ_Detonator_Up object. 26. Add an event for a collision with the avatar. Even though the detonator is not the object that will be moving, the collision is still between the detonator and the avatar. 27. There are many actions that need to happen all at once, so begin a block of code by dragging the Start Block button from the Control tab and drop it into the Actions: column. 28. Add an action that creates an instance of the OBJ_Detonator_Down object at (0,0) relative to the OBJ_Detonator_Up object. 29. Add an action that destroys the OBJ_Detonator_Up object. 30. Add an action that creates an instance of the OBJ_Explosion object at (0,0) relative to the OBJ_Dynamite_Stick object. 31. Add an action that destroys the OBJ_Dynamite_Stick object. 32. Close the block of code by dragging the End Block button from the Control tab and dropping it at the bottom of the Actions: column. See Figure Test play the game to see if the doors explode and that the explosion does not repeat. 40. Debug the game if needed. 41. Save your work. End Block 33. Test play the game. See if you can walk up to the doors and press the space bar to place a stick of dynamite. After placing a stick of dynamite, run into the detonator to see if the dynamite stick blows up and the detonator plunger is depressed. Note: the doors will not be destroyed; this will be programmed in the next section. 34. Debug the game if the stick of dynamite is not placed or does not explode or if the detonator does not change to the down position. Note: the explosion will be fixed in the next section. 35. Save your work. Figure 10-5 Click Select 160 Introduction to Video Design Lesson 10 The Key to Adventure Beta 161

6 Resetting the Detonator Did you notice as you test played the game that you only get one chance to activate the detonator? After you activate it, it is stuck down. If you put the dynamite in the wrong place, you can place more dynamite, but you have no way to set it off. There needs to be a way for the player to reset the detonator. You will program the game so that when the player presses the [Enter] key, the detonator will be reset to the up position. 42. Open the Object Properties dialog box for the OBJ_Detonator_Down object. 43. Program this logic statement: IF the player presses the [Enter] key, THEN destroy the OBJ_Detonator_Down object AND create an instance of the OBJ_Detonator_Up object at (0,0) relative to the OBJ_Detonator_Down object. Program this as a block of code. See Figure Test play the game. Check to see that you can destroy the dynamite sticks, place a new dynamite stick, reset the detonator, and destroy the new dynamite stick. 45. Debug the game if needed. 46. Save your work. Figure Check the Self radio button. 51. In the Variable: text box, enter VAR_One_Stick. Remember, when you later reference this variable, it must be spelled exactly the same. 52. Enter 0 in the Value: text box. 53. Click the OK button to save the action. This programming sets the number of dynamite sticks the player has to zero. The player will begin with no dynamite and will need to pick up one stick at a time. Next, the avatar needs to be programmed to pick up a stick of dynamite. 54. Add an event for colliding with the avatar. Even though the dynamite pack will not be moving, a collision with the avatar occurs when the avatar runs into the dynamite pack. 55. Drag the Set Variable button from the Control tab and drop it into the Actions: column. 56. Check the Self radio button. 57. In the Variable: text box, enter VAR_One_Stick. This variable must be spelled exactly the same as it was earlier. 58. Enter 1 in the Value: text box. 59. Click the OK button to save the action. This programming allows the player to pick up one stick of dynamite when the avatar touches the dynamite pack. Now, you need to reprogram how the player can place the sticks of dynamite. Here, the computer needs to check to see if the avatar is currently carrying a stick of dynamite. If so, then a stick of dynamite can be placed when the space bar is pressed. If the avatar is not carrying a stick of dynamite, nothing happens when the space bar is pressed. 60. Add an event for pressing the space bar. 61. Drag the Test Variable button from the Control tab and drop it into the Actions: column. The Test Variable dialog box is displayed, Figure Variable name Player will start with zero sticks of dynamite Set Variable Programming with Variables The game is much more fun destroying things always seems to help! But, the dynamite is automatically available to the player. This is too easy. To increase the challenge, you will program the game so the player can only carry one stick of dynamite at a time. Variables will be used to achieve this new challenge. A variable is a programming item holding a temporary value (number or text) that can vary or change. Remember that pack of dynamite you placed earlier? The player will pick up a single stick of dynamite each time the avatar touches the dynamite pack. 47. Open the Object Properties dialog box for the OBJ_Dynamite_Pack object. 48. Add a create event. 49. Drag the Set Variable button from the Control tab and drop it into the Actions: column. The Set Variable dialog box is displayed, Figure Block of code for resetting the detonator Set Variable Figure Click the Self radio button. 63. Enter VAR_One_Stick in the Variable: text box. Be sure it is spelled exactly the same as it was earlier. Test Variable 162 Introduction to Video Design Lesson 10 The Key to Adventure Beta 163

7 Start Block Create Instance Figure 10-8 Make sure the variable is spelled correctly Enter the value to test Select the operation 64. Enter 1 in the Value: text box. 65. Click in the Operation: text box and select Equal to from the shortcut menu. In earlier lessons, you learned how qualifiers work. This test-variable action is the qualifier for the rest of the actions needed, which will be in a block of code. If the qualifier does not show the value of VAR_One_Stick equal to 1, then the block of code will not be executed. The first action in the block of code is to allow the player to place a stick of dynamite when the space bar is pressed. 66. Drag the Start Block button from the Control tab and drop it into the Actions: column below the test-variable qualifier. 67. Drag the Create Instance button from the Main 1 tab and drop it into the Actions: column below the Start of a block entry. 68. In the Create Instance dialog box, program the action such that an OBJ_Dynamite_ Stick object will be created at (16, 16) relative to the OBJ_Avatar object. 69. Drag the Set Variable button and drop it into the Actions: column at the bottom of the block of code. 70. In the Set Variable dialog box, program the action to set the value of the variable VAR_ One_Stick to 0. This is needed because otherwise the player would be able to place an unlimited number of sticks of dynamite without having to go back to the dynamite pack. 71. Drag the End Block button from the Control tab and drop it into the Actions: column to close the block of code. 72. Test play the game. You will notice a bug with the sticks of dynamite, which will be discussed in the next section. 73. Save your work. Bug Type Meaning Examples A Major problem! The game cannot be released.... B ame the error. C Common problem. T.. D be enhanced.... Figure 10-9 Set Variable End Block Level B Bug When you test played the game, you should have noticed you can place an unlimited number of sticks of dynamite, even before you run into the dynamite pack. This is considered a level B bug. See Figure Remember, when you first created programming for placing a stick of dynamite, pressing the space bar was the event. However, the programming you just created with the variable VAR_One_Stick also has an event of pressing the space bar to place a stick of dynamite. 74. Open the Object Properties dialog box for the OBJ_Avatar object. 75. Select the event for pressing the space bar. 76. Click the Delete button to remove the event and all associated actions. Enemy Movement 77. Open the Room Properties dialog box for the Level 1 room. 78. Place the OBJ_Spider object room somewhere between the dynamite pack and the detonator. 79. Create a path for the spider to move back and forth to block the way. See Figure Creating a path was explained in earlier lessons. Name the path Path_Spider. Use your cursor and the coordinate display to determine the location of the spider. Then, draw a path from its current location to another location so the spider will cross where the player must travel. The path you create may be different from what is shown in Figure if you place the spider in a different location. To get the spider to move along the path, you now need to program it to do so. 80. Open the Object Properties dialog box for the OBJ_Spider object. 81. Add a create event. 164 Introduction to Video Design Lesson 10 The Key to Adventure Beta 165

8 88. Drag the Set Lives button from the Score tab and drop it into the Actions: column. 89. In the Set Lives dialog box, enter 1 in the New lives: text box, check the Relative check box, and click the OK button to save the action. 90. Drag the Jump to Start button from the Move tab and drop it into the Actions: column. The Jump to Start dialog box is displayed, Figure Set Lives Path for the spider 91. Click the Object: radio button. Then, click in the text box that appears and select the avatar from the shortcut menu. This will return the player to the starting position, which is called respawning. In this case, the respawn checkpoint is the starting position. 92. Click the OK button to save the action. 93. Drag the Test Lives button from the Control tab and drop it into the Actions: column. 94. In the Test Lives dialog box, enter 0 in the Value: text box, click in the Operation: text box and select Equal to from the shortcut menu, and click the OK button. 95. Drag the End button from the Main 2 tab and drop it into the Actions: column, Figure Jump to Start Test Lives Set Path Figure Drag the Set Path button from the Move tab and drop it into the Actions: column. The Set Path dialog box is displayed, Figure Enter 2 in the Speed: text box. 84. Click in the At end: text box and select Reverse from the shortcut menu. This will cause the spider to walk back to the starting point. 85. Click in the Relative: text box and select Absolute from the shortcut menu. This is absolute because you used the absolute coordinate location of the spider. 86. Click the OK button to save the action. Now, the spider will move along the path, but the player can run over it without anything happening. The OBJ_Spider object needs to be programmed to be an obstacle. You also need to program the game so the player begins with three lives. Running into the spider will remove one life from the player. 87. Add an event for colliding with the avatar. Select the avatar to return to its starting position End Figure Code for removing lives and ending the game Figure Select the path Enter the speed Set the spider to reverse Figure Introduction to Video Design Lesson 10 The Key to Adventure Beta 167

9 Set Lives 96. Close the Object Properties dialog box for the OBJ_Spider object. 97. Open the Object Properties dialog box for the OBJ_Wall object. 98. Add a create event. 99. Drag the Set Lives button from the Score tab and drop it into the Actions: column In the Set Lives dialog box, enter 3 in the New lives: text box, leave the Relative check box unchecked, and click the OK button to save the action. This gives the player three lives at the beginning of the game Test play the game. Make sure you run into the spider to test the lives and respawning Debug if needed Save your work. Destroys the spiker, adds 1000 to the score, and plays a sound Rewards At the end of Lesson 9, you added reward objects (OBJ_Blue_Gem) and programmed them to increase the player s score. At the beginning of this lesson, you created another reward object (OBJ_Diamond). Place several instances of this object diamond on Level 1 in hardto-reach places. Program the OBJ_Diamond object such that IF the avatar collides with the diamond, THEN the player score increases AND the diamond is destroyed AND a sound is played. The point value for the diamonds should be higher than the blue gems. Figure Test play the game Debug any issues Save your work. Greater Risk, Greater Reward As part of any good game challenge, taking a risk will give a reward. A challenge you will now add to the game is to allow the player to blow up the spider. When the dynamite explodes, the spider will be destroyed and the player will receive a reward. Since the player will take a great risk in placing a stick of dynamite near the spider, the reward should be large. The programming here is actually pretty easy Program this logic statement: IF the spider collides with the explosion, THEN destroy the spider AND add 1000 points to the player score AND play a sound. See Figure Test play the game. Level 1 should be complete, but levels 2 and 3 still need improvements. Going Beyond 113. Save a copy of your game as LastName_Maze_Gamma Try programming the detonator to reset using a timer instead of the player pressing the [Enter] key Use your skills to problem-solve a solution to the issue that occurs when the player exits level 1 and tries to reenter level 1 from level Add challenges that require more skill than just getting a key or blowing things up Save your work, build the game as an executable, and submit it for grading Debug level 1 as needed Save your work. First Playable Level Milestone Time to celebrate! You have reached the first playable level milestone. All other levels should be much easier since the basic programming will remain. Before you ship your game off to be evaluated, you need to complete a few additional tuning steps Add the new game information to the title page and help, including the use of the [Enter] key and space bar Design and program changes to levels 2 and 3 to increase challenges and rewards. Add your personal touch to the design of each level. Add appropriate sounds and transitions for a refined game. 168 Introduction to Video Design Lesson 10 The Key to Adventure Beta 169

10 STEM Review Questions and Activities Review Questions 8. Define variable, as used in computer programming. 1. Describe what a barrier is in a video game. 2. Review the bug type table in Figure 10-9 and identify the type of each bug listed below. Error Report freezes when pressing two keys at the same time. Avatar s shoes are red on all levels except level 6. Bug Type 9. If blue gems are worth 15 points, diamonds are worth 25 points, and the spider is worth 100 points, how many of each gem has the player collected if the score is 170 and the player has destroyed the spider? There are three possible combinations that equal 170. Solution A B C # of Blue Gems 15 points # of Diamonds 25 points Spider 100 points Level 1 is much harder than levels 4 and 5. Extra life bonus awards an extra life and 100 extra points the first time it is used. Evaluation Activities 10. Personal Evaluation 3. What are the demographics of the target audience for this game? Justify your opinion Score Concept Is the idea well developed? No main idea. Clear throughout. 4. Describe what a passage key is in a video game. 5. For every action there is an equal and opposite reaction. Describe how this scientific principle is applied in the game build for this lesson. Aesthetics Do the look and colors fit the game? Sound Effects Do the sounds play well? Are the music and ambient sounds appropriate? Functionality Does everything work? Poor quality graphics and color. No sound; sounds too loud or not related to the game. Unfinished, could not play; major errors. Awesome graphics and theme-based colors. Good sound for each item at good levels. Plays perfectly; no bugs, glitches, or errors. 6. Describe the first playable level milestone. 7. If the spider obstacle is moving along a path that is 57 pixels in length and it takes three seconds to return to the starting point, how fast is the spider moving (in pixels/second)? Applied Technology Language Arts Mathematics Science Social Science Replay How likely are you to play this game again? Applied Technology solved, too easy or uninteresting. Language Arts Cannot wait to play this again! Total Score (higher is better) Mathematics Science Social Science 170 Introduction to Video Design Lesson 10 The Key to Adventure Beta 171

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

Tutorial: Creating Platform Games

Tutorial: Creating Platform Games Tutorial: Creating Platform Games Copyright 2003, Mark Overmars Last changed: March 30, 2003 Uses: version 5.0, advanced mode Level: Intermediate Platform games are very common, in particular on devices

More information

Code Kingdoms Learning a Language

Code Kingdoms Learning a Language codekingdoms Code Kingdoms Unit 2 Learning a Language for kids, with kids, by kids. Resources overview We have produced a number of resources designed to help people use Code Kingdoms. There are introductory

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

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

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

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

Creating trouble-free numbering in Microsoft Word

Creating trouble-free numbering in Microsoft Word Creating trouble-free numbering in Microsoft Word This note shows you how to create trouble-free chapter, section and paragraph numbering, as well as bulleted and numbered lists that look the way you want

More information

5. Tutorial. Starting FlashCut CNC

5. Tutorial. Starting FlashCut CNC FlashCut CNC Section 5 Tutorial 259 5. Tutorial Starting FlashCut CNC To start FlashCut CNC, click on the Start button, select Programs, select FlashCut CNC 4, then select the FlashCut CNC 4 icon. A dialog

More information

DVR GUIDE. Using your DVR/Multi-Room DVR. 1-866-WAVE-123 wavebroadband.com

DVR GUIDE. Using your DVR/Multi-Room DVR. 1-866-WAVE-123 wavebroadband.com DVR GUIDE Using your DVR/Multi-Room DVR 1-866-WAVE-123 wavebroadband.com Table of Contents Control Live TV... 4 Playback Controls... 5 Remote Control Arrow Buttons... 5 Status Bar... 5 Pause... 6 Rewind...

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

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch

The Richard Pate School. Draft Year 4 Scheme of Work for Scratch The Richard Pate School Draft Year 4 Scheme of Work for Scratch Marcus Gilvear July 2014 (Acknowledgements: Phil Bagge and Duncan Hooper) Re Scratch: This work is licensed under the Creative Commons Attribution-NonCommercial

More information

Intermediate PowerPoint

Intermediate PowerPoint Intermediate PowerPoint Charts and Templates By: Jim Waddell Last modified: January 2002 Topics to be covered: Creating Charts 2 Creating the chart. 2 Line Charts and Scatter Plots 4 Making a Line Chart.

More information

Designing Games with Game Maker

Designing Games with Game Maker Designing Games with Game Maker version 5.0 (April 14, 2003) Written by Mark Overmars Table of Contents Chapter 1 So you want to create your own computer games... 6 Chapter 2 Installation... 8 Chapter

More information

If you know exactly how you want your business forms to look and don t mind

If you know exactly how you want your business forms to look and don t mind appendix e Advanced Form Customization If you know exactly how you want your business forms to look and don t mind detail work, you can configure QuickBooks forms however you want. With QuickBooks Layout

More information

Raster Burn - Review

Raster Burn - Review Raster Burn Design Document Kyle Blevens and Adam Le Doux Detailed Plan RASTER BURN is a virtual competitive team sport for four or more players. Players navigate a field and work together to score points

More information

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright

Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright Greetings Keyboard Mastery Keyboarding Students! Teacher: Mrs. Wright You do NOT have to turn anything in I can see your scores and grades online in my Teacher Manager. Read this syllabus carefully! Step

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

DIGITAL / HD GUIDE. Using Your Interactive Digital / HD Guide. 1-866-WAVE-123 wavebroadband.com

DIGITAL / HD GUIDE. Using Your Interactive Digital / HD Guide. 1-866-WAVE-123 wavebroadband.com DIGITAL / HD GUIDE Using Your Interactive Digital / HD Guide 1-866-WAVE-123 wavebroadband.com Using Your Interactive Digital/HD Guide Wave s Digital/HD Guide unlocks a world of greater choice, convenience

More information

User Guide For ipodder on Windows systems

User Guide For ipodder on Windows systems User Guide Page 1 User Guide For ipodder on Windows systems Part of the ipodder Documentation User Guide Page 2 Table Of Contents 1. Introduction (p3) 2. Getting Started (p3) 1. Requirements (p4) 2. Installation

More information

After that you can log in and start creating games or playing existing games.

After that you can log in and start creating games or playing existing games. Magos Lite http://magos.pori.tut.fi/ Magos Lite (ML) can be played directly from a browser. It is optimized for Chrome but will work on other major browsers, except Internet Explorer (not supported). ML

More information

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL

CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL CORSAIR GAMING KEYBOARD SOFTWARE USER MANUAL TABLE OF CONTENTS CORSAIR UTILITY ENGINE OVERVIEW PROFILES 1 9 Introduction 2 Starting the Corsair Utility Engine 2 Profiles: Settings for a Specific Program

More information

Make your own Temple Run game

Make your own Temple Run game Make your own Temple Run game These instructions will talk you through how to make your own Temple Run game with your pupils. The game is made in Scratch, which can be downloaded here: http://scratch.mit.edu

More information

Movie Maker 2 Beginning

Movie Maker 2 Beginning Movie Maker 2 Beginning Quick Overview...3 Preparing a Folder...3 Collecting Resources...3 Pictures...4 Screen Resolution...4 Starting Windows Movie Maker...4 Which Version?...4 Windows Movie Maker 2 Window...4

More information

STB- 2. Installation and Operation Manual

STB- 2. Installation and Operation Manual STB- 2 Installation and Operation Manual Index 1 Unpacking your STB- 2 2 Installation 3 WIFI connectivity 4 Remote Control 5 Selecting Video Mode 6 Start Page 7 Watching TV / TV Guide 8 Recording & Playing

More information

Lottery Looper. User Manual

Lottery Looper. User Manual Lottery Looper User Manual Lottery Looper 1.7 copyright Timersoft. All rights reserved. http://www.timersoft.com The information contained in this document is subject to change without notice. This document

More information

City of De Pere. Halogen How To Guide

City of De Pere. Halogen How To Guide City of De Pere Halogen How To Guide Page1 (revised 12/14/2015) Halogen Performance Management website address: https://global.hgncloud.com/cityofdepere/welcome.jsp The following steps take place to complete

More information

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15

ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 ios 9 Accessibility Switch Control - The Missing User Guide Updated 09/15/15 Apple, ipad, iphone, and ipod touch are trademarks of Apple Inc., registered in the U.S. and other countries. ios is a trademark

More information

Avatar: Appearance Changing Your Shape. 1-1.2 Introduction. 1-1.2.1 Instruction. 1-1.2.2 Practice LEVEL: 1 MODULE: AVATAR: APPEARANCE MISSION 2

Avatar: Appearance Changing Your Shape. 1-1.2 Introduction. 1-1.2.1 Instruction. 1-1.2.2 Practice LEVEL: 1 MODULE: AVATAR: APPEARANCE MISSION 2 Avatar: Appearance Changing Your Shape LEVEL: 1 MODULE: AVATAR: APPEARANCE MISSION 2 1-1.2 Introduction Now that you have a default avatar, it s time to start customizing it to your liking! Fortunately,

More information

WebEx Sharing Resources

WebEx Sharing Resources WebEx Sharing Resources OTS PUBLICATION: WX0 REVISED: 4/8/06 04 TOWSON UNIVERSITY OFFICE OF TECHNOLOGY SERVICES =Shortcut =Advice =Caution Introduction During a WebEx session, the host has the ability

More information

Triggers & Actions 10

Triggers & Actions 10 Triggers & Actions 10 CHAPTER Introduction Triggers and actions are the building blocks that you can use to create interactivity and custom features. Once you understand how these building blocks work,

More information

Designing Games with Game Maker

Designing Games with Game Maker Designing Games with Game Maker Version 6.1 Written by Mark Overmars What is New Version 6.1 of Game Maker is a relative minor upgrade over version 6.0. The following changes have been made: Incompatibilities

More information

SECTION 5: Finalizing Your Workbook

SECTION 5: Finalizing Your Workbook SECTION 5: Finalizing Your Workbook In this section you will learn how to: Protect a workbook Protect a sheet Protect Excel files Unlock cells Use the document inspector Use the compatibility checker Mark

More information

Pacman 3D. Suggestions Multiple levels Powerups that let Pacman chase and eat Ghosts; ghosts need to respawn

Pacman 3D. Suggestions Multiple levels Powerups that let Pacman chase and eat Ghosts; ghosts need to respawn Mario 3D Mario is a classic game featuring a side scrolling 2D Mario character that can jump to avoid moving enemies and collect coins. In this 3D version, you will program a Mario like character to respond

More information

BrainMaster Macromedia Flash Player

BrainMaster Macromedia Flash Player BrainMaster Macromedia Flash Player The BrainMaster Macromedia Flash Player is a built-in extension that provides the 2.5SE software with the ability to play Flash programs in real time, and to control

More information

1 Important Information. Basic Information. 2 Introduction. 3 Getting Started. 4 Saving and Deleting Data. Actions. 5 Donkey Kong's Moves

1 Important Information. Basic Information. 2 Introduction. 3 Getting Started. 4 Saving and Deleting Data. Actions. 5 Donkey Kong's Moves 1 Important Information Basic Information 2 Introduction 3 Getting Started 4 Saving and Deleting Data Actions 5 Donkey Kong's Moves 6 Diddy Kong's Moves How to Play 7 Game Maps 8 Game Screen 9 Basic Play

More information

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time.

paragraph(s). The bottom mark is for all following lines in that paragraph. The rectangle below the marks moves both marks at the same time. MS Word, Part 3 & 4 Office 2007 Line Numbering Sometimes it can be helpful to have every line numbered. That way, if someone else is reviewing your document they can tell you exactly which lines they have

More information

Fusion's runtime does its best to match the animation with the movement of the character. It does this job at three different levels :

Fusion's runtime does its best to match the animation with the movement of the character. It does this job at three different levels : The Animation Welcome to the eight issue of our Multimedia Fusion tutorials. This issue will discuss how the Fusion runtime handle sprites animations. All the content of this tutorial is applicable to

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

Microsoft Word 2010 Training

Microsoft Word 2010 Training Microsoft Word 2010 Training Microsoft Word 102 Instructor: Debbie Minnerly Course goals Learn how to work with paragraphs. Set tabs and work with tables. Learn about styles Use the spelling and grammar

More information

einstruction CPS (Clicker) Instructions

einstruction CPS (Clicker) Instructions Two major approaches to run Clickers a. Anonymous b. Tracked Student picks any pad as s/he enters classroom; Student responds to question, but pad is not linked to student; Good for controversial questions,

More information

Page 1 of 24. Rome Table Guide By ShoryukenToTheChin

Page 1 of 24. Rome Table Guide By ShoryukenToTheChin Page 1 of 24 Rome Table Guide By ShoryukenToTheChin 5 1 2 3 4 6 7 8 9 Page 2 of 24 Key to Table Image Above *Thanks to Community Member - Cloda for the Overhead Image* 1. Left Orbit 2. Romulus Sink Hole

More information

Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8

Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8 Authorware Install Directions for IE in Windows Vista, Windows 7, and Windows 8 1. Read entire document before continuing. 2. Close all browser windows. There should be no websites open. If you are using

More information

GETTING STARTED TABLE OF CONTENTS

GETTING STARTED TABLE OF CONTENTS Windows 7 Tutorial GETTING STARTED An operating system, sometimes called an OS, is the main program the computer uses to function properly. Operating systems act as a link between you, the user, and the

More information

HIT THE GROUND RUNNING MS WORD INTRODUCTION

HIT THE GROUND RUNNING MS WORD INTRODUCTION HIT THE GROUND RUNNING MS WORD INTRODUCTION MS Word is a word processing program. MS Word has many features and with it, a person can create reports, letters, faxes, memos, web pages, newsletters, and

More information

Billboard Tutorial. NOTE: The first Image is actually transparent any where you see white. The last picture actually IS white.

Billboard Tutorial. NOTE: The first Image is actually transparent any where you see white. The last picture actually IS white. Billboard Tutorial Many people have asked for a Tutorial on how to make Billboards, and since I have played around with them quite a bit I figured I would create one. Billboards are actually very easy

More information

VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1. Content Marketing - Analyzing Your Efforts:

VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1. Content Marketing - Analyzing Your Efforts: VIDEO TRANSCRIPT: Content Marketing Analyzing Your Efforts 1 Content Marketing - Analyzing Your Efforts: This is a transcript of a presentation originally given live at the Growth Powered by Risdall Fall

More information

FAQ Exodus Proxima Centauri 07/2013

FAQ Exodus Proxima Centauri 07/2013 Resources & Population Q: Do I pay tax for the resources I had before together with the new ones? A: No, it is a tax per income, not per fortune. You pay tax for what you get fresh that turn. Q: My stash

More information

Windows XP Pro: Basics 1

Windows XP Pro: Basics 1 NORTHWEST MISSOURI STATE UNIVERSITY ONLINE USER S GUIDE 2004 Windows XP Pro: Basics 1 Getting on the Northwest Network Getting on the Northwest network is easy with a university-provided PC, which has

More information

User Manual. OpenLP is a program to display video, images and text onto a projector. Particularly aimed at churches.

User Manual. OpenLP is a program to display video, images and text onto a projector. Particularly aimed at churches. User Manual OpenLP, Copyright (C) 2004 Timothy Ebenezer OpenLP comes with ABSOLUTELY NO WARRANTY. OpenLP is a program to display video, images and text onto a projector. Particularly aimed at churches.

More information

Desktop Programmer (DTP)

Desktop Programmer (DTP) INSTALLATION Desktop Programmer (DTP) Keypads & Readers Contents Set up the System...1 RCI DTP Contents...1 Install the System...2 Initialize the Program...2 Initialize the Door Locks...3 Add a User...4

More information

Collision Theory and Logic

Collision Theory and Logic This sample chapter is for review purposes only. Copyright The Goodheart-Willcox Co., Inc. All rights reserved. Chapter 5 Collision Theory and Logic 3 C H A P T E R 5 Collision Theory and Logic To use

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Microsoft PowerPoint Exercises 4

Microsoft PowerPoint Exercises 4 Microsoft PowerPoint Exercises 4 In these exercises, you will be working with your Music Presentation file used in part 1 and 2. Open that file if you haven t already done so. Exercise 1. Slide Sorter

More information

Last Team Standing Creator GUIDE

Last Team Standing Creator GUIDE GUIDE 1 INTRODUCTION Upon entering the GTA Online Creator tool, you ll be presented with multiple Job types that are available to create (01). 01 2 02 After selecting Last Team Standing [LTS], you will

More information

Free Report. My Top 10 Tips to Betting Like a Pro With Zero Risk

Free Report. My Top 10 Tips to Betting Like a Pro With Zero Risk Free Report My Top 10 Tips to Betting Like a Pro With Zero Risk Legal Disclaimer: EVERY EFFORT HAS BEEN MADE TO ACCURATELY REPRESENT THIS PRODUCT AND IT'S POTENTIAL. EVEN THOUGH THIS INDUSTRY IS ONE OF

More information

CATIA Basic Concepts TABLE OF CONTENTS

CATIA Basic Concepts TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Manual Format...2 Log on/off procedures for Windows...3 To log on...3 To logoff...7 Assembly Design Screen...8 Part Design Screen...9 Pull-down Menus...10 Start...10

More information

Introduction to LogixPro - Lab

Introduction to LogixPro - Lab Programmable Logic and Automation Controllers Industrial Control Systems I Introduction to LogixPro - Lab Purpose This is a self-paced lab that will introduce the student to the LogixPro PLC Simulator

More information

Brock University Content Management System Training Guide

Brock University Content Management System Training Guide Brock University Content Management System Training Guide Table of Contents Brock University Content Management System Training Guide...1 Logging In...2 User Permissions...3 Content Editors...3 Section

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

CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks

CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks CHAPTER 18 Programming Your App to Make Decisions: Conditional Blocks Figure 18-1. Computers, even small ones like the phone in your pocket, are good at performing millions of operations in a single second.

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

Sticky Password User Manual. 2009 Sticky Password

Sticky Password User Manual. 2009 Sticky Password 2 Table of Contents Foreword 0 3 Part I Sticky Password Manager 1 Introducing... to Sticky Password 3 2 Registration... and Licensing Sticky Password 4 4 Part II Working with Sticky Password 1 Running...

More information

Chapter 6. Formatting Text with Character Tags

Chapter 6. Formatting Text with Character Tags Chapter 6 Formatting Text with Character Tags 143 144 FrameMaker 7: The Complete Reference In many desktop publishing applications, you use a single style sheet for both paragraph and character formatting.

More information

Using an Edline Gradebook. EGP Teacher Guide

Using an Edline Gradebook. EGP Teacher Guide Using an Edline Gradebook EGP Teacher Guide Table of Contents Introduction...3 Setup...3 Get the Gradebook Web Plugin... 3 Using Your Web Gradebook... 4 Using the Web Gradebook on a Shared Computer...

More information

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION

L OCUTOUR. Get Ready to Spell! MULTIMEDIA COGNITIVE REHABILITATION L OCUTOUR MULTIMEDIA COGNITIVE REHABILITATION Get Ready to Spell! Get Ready to Spell! Why Use This Program? This program is based on the observation that we learn by repetition. Many of the activities

More information

Getting Started on the Computer With Mouseaerobics! Windows XP

Getting Started on the Computer With Mouseaerobics! Windows XP This handout was modified from materials supplied by the Bill and Melinda Gates Foundation through a grant to the Manchester City Library. Getting Started on the Computer With Mouseaerobics! Windows XP

More information

Using VLOOKUP to Combine Data in Microsoft Excel

Using VLOOKUP to Combine Data in Microsoft Excel Using VLOOKUP to Combine Data in Microsoft Excel Microsoft Excel includes a very powerful function that helps users combine data from multiple sources into one table in a spreadsheet. For example, if you

More information

INTRODUCTION TO COACHING TEACHING SKILLS TEACHING/LEARNING. September 2007 Page 1

INTRODUCTION TO COACHING TEACHING SKILLS TEACHING/LEARNING. September 2007 Page 1 TEACHING SKILLS September 2007 Page 1 TEACHING SKILLS Being a teacher is one of the main roles a coach fulfils for their players. The ability to teach effectively, especially the technical skills of ice

More information

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05

X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder. Tutorial. Michał Zabielski 2010-08-05 X-Trade Brokers Dom Maklerski S.A. XTB Expert Builder Tutorial Michał Zabielski 2010-08-05 Table of Contents Installation...3 Legal notification...7 Initial adjustments / Preferences...8 Language...8 Platform

More information

A Beginner s Guide to PowerPoint 2010

A Beginner s Guide to PowerPoint 2010 A Beginner s Guide to PowerPoint 2010 I. The Opening Screen You will see the default opening screen is actually composed of three parts: 1. The Slides/Outline tabs on the left which displays thumbnails

More information

- User input includes typing on the keyboard, clicking of a mouse, tapping or swiping a touch screen device, etc.

- User input includes typing on the keyboard, clicking of a mouse, tapping or swiping a touch screen device, etc. Java User Input WHAT IS USER INPUT? - Collecting and acting on user input is important in many types of programs or applications. - User input includes typing on the keyboard, clicking of a mouse, tapping

More information

Copyright 2006 TechSmith Corporation. All Rights Reserved.

Copyright 2006 TechSmith Corporation. All Rights Reserved. TechSmith Corporation provides this manual as is, makes no representations or warranties with respect to its contents or use, and specifically disclaims any expressed or implied warranties or merchantability

More information

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9.

Sample Table. Columns. Column 1 Column 2 Column 3 Row 1 Cell 1 Cell 2 Cell 3 Row 2 Cell 4 Cell 5 Cell 6 Row 3 Cell 7 Cell 8 Cell 9. Working with Tables in Microsoft Word The purpose of this document is to lead you through the steps of creating, editing and deleting tables and parts of tables. This document follows a tutorial format

More information

Bluetooth Installation

Bluetooth Installation Overview Why Bluetooth? There were good reasons to use Bluetooth for this application. First, we've had customer requests for a way to locate the computer farther from the firearm, on the other side of

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

PERSONAL LEARNING PLAN- STUDENT GUIDE

PERSONAL LEARNING PLAN- STUDENT GUIDE PERSONAL LEARNING PLAN- STUDENT GUIDE TABLE OF CONTENTS SECTION 1: GETTING STARTED WITH PERSONAL LEARNING STEP 1: REGISTERING FOR CONNECT P.2 STEP 2: LOCATING AND ACCESSING YOUR PERSONAL LEARNING ASSIGNMENT

More information

Mathletics For Students

Mathletics For Students powered by Students Welcome to the 4 million! Mathletics is a global community of 4 million students in over 17,000 schools and homes around the world and now you are a part of the community. This guide

More information

Checking Spelling and Grammar

Checking Spelling and Grammar In this chapter Checking spelling and grammar in a document Use automatic spell-checking and correction Using Word s thesaurus Using other languages and custom dictionaries 13 Checking Spelling and Grammar

More information

WRITE-UP CS Adjusting Entry Procedures

WRITE-UP CS Adjusting Entry Procedures WRITE-UP CS Adjusting Entry Procedures Introduction This document highlights a few of the special features in Write-Up CS that can help make processing easier. On the following pages, we provide step-by-step

More information

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1

Migrating to Excel 2010 from Excel 2003 - Excel - Microsoft Office 1 of 1 Migrating to Excel 2010 - Excel - Microsoft Office 1 of 1 In This Guide Microsoft Excel 2010 looks very different, so we created this guide to help you minimize the learning curve. Read on to learn key

More information

Power Point 2003 Table of Contents

Power Point 2003 Table of Contents Power Point 2003 Table of Contents Creating a Presentation... 2 Selecting Background and Format for Slide... 3 Creating the Title Slide... 4 Adding a New Slide... 5 Types of Text for a Slide: Taken from

More information

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood

How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS. Lynne W Fielding, GISP Town of Westwood How to create PDF maps, pdf layer maps and pdf maps with attributes using ArcGIS Lynne W Fielding, GISP Town of Westwood PDF maps are a very handy way to share your information with the public as well

More information

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following:

To add a data form to excel - you need to have the insert form table active - to make it active and add it to excel do the following: Excel Forms A data form provides a convenient way to enter or display one complete row of information in a range or table without scrolling horizontally. You may find that using a data form can make data

More information

AT&T U-verse App for iphone FAQ s

AT&T U-verse App for iphone FAQ s About AT&T U-verse What is AT&T U-verse for iphone? The AT&T U-verse for iphone is a service that provides all U-verse subscribers with the ability to view their U-verse TV Guide, manage their home DVR,

More information

TEACHER S GUIDE TO RUSH HOUR

TEACHER S GUIDE TO RUSH HOUR Using Puzzles to Teach Problem Solving TEACHER S GUIDE TO RUSH HOUR Includes Rush Hour 2, 3, 4, Rush Hour Jr., Railroad Rush Hour and Safari Rush Hour BENEFITS Rush Hour is a sliding piece puzzle that

More information

Minecraft Server Dashboard Users Guide

Minecraft Server Dashboard Users Guide Minecraft Server Dashboard Users Guide navhaxs Minecraft Server Dashboard simplifies your server management experience by replacing all the manual editing of configuration files and console commands with

More information

PowerPoint 2013 Basics of Creating a PowerPoint Presentation

PowerPoint 2013 Basics of Creating a PowerPoint Presentation Revision 4 (01-31-2014) PowerPoint 2013 Basics of Creating a PowerPoint Presentation MICROSOFT POWERPOINT PowerPoint is software that lets you create visual presentations. PowerPoint presentations are

More information

Using WINK to create custom animated tutorials

Using WINK to create custom animated tutorials Using WINK to create custom animated tutorials A great way for students and teachers alike to learn how to use new software is to see it demonstrated and to reinforce the lesson by reviewing the demonstration.

More information

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

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 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

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

Quick Reference Guide for Mimio Teach Hardware:

Quick Reference Guide for Mimio Teach Hardware: Quick Reference Guide for Mimio Teach Hardware: Quick Reference Guide for Mimio Studio Notebook Software Menu: MimioStudio Gallery Background Information: Almost everything I have learned about using

More information

Game Design Document and Production Timeline. John Laird and Sugih Jamin University of Michigan

Game Design Document and Production Timeline. John Laird and Sugih Jamin University of Michigan Game Design Document and Production Timeline John Laird and Sugih Jamin University of Michigan Game Production Timeline Inspiration (1 month) Results in game treatment/concept paper Conceptualization (3-5

More information

Microsoft Excel 2013 Tutorial

Microsoft Excel 2013 Tutorial Microsoft Excel 2013 Tutorial TABLE OF CONTENTS 1. Getting Started Pg. 3 2. Creating A New Document Pg. 3 3. Saving Your Document Pg. 4 4. Toolbars Pg. 4 5. Formatting Pg. 6 Working With Cells Pg. 6 Changing

More information

Acrobat X Pro Accessible Forms and Interactive Documents

Acrobat X Pro Accessible Forms and Interactive Documents Contents 2 PDF Form Fields 2 Acrobat Form Wizard 5 Enter Forms Editing Mode Directly 5 Create Form Fields Manually 6 Forms Editing Mode 8 Form Field Properties 11 Editing or Modifying an Existing Form

More information

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0

ECDL. European Computer Driving Licence. Spreadsheet Software BCS ITQ Level 2. Syllabus Version 5.0 European Computer Driving Licence Spreadsheet Software BCS ITQ Level 2 Using Microsoft Excel 2010 Syllabus Version 5.0 This training, which has been approved by BCS, The Chartered Institute for IT, includes

More information

Set Top Box User Guide. Global Reach with a Local Touch

Set Top Box User Guide. Global Reach with a Local Touch Set Top Box User Guide Global Reach with a Local Touch Table of Contents REMOTE SET UP 3 SET TOP BOX DIAGRAM 4 SET TOP BOX SETTINGS 5 TURN ON/OFF 5 TV INPUT SETTINGS 5 ADJUSTING THE VOLUME 5 RESETTING

More information

How to Make the Most of Excel Spreadsheets

How to Make the Most of Excel Spreadsheets How to Make the Most of Excel Spreadsheets Analyzing data is often easier when it s in an Excel spreadsheet rather than a PDF for example, you can filter to view just a particular grade, sort to view which

More information

IT Quick Reference Guides Using Windows 7

IT Quick Reference Guides Using Windows 7 IT Quick Reference Guides Using Windows 7 Windows Guides This sheet covers many of the basic commands for using the Windows 7 operating system. WELCOME TO WINDOWS 7 After you log into your machine, the

More information

Ready, Set, Go! Math Games for Serious Minds

Ready, Set, Go! Math Games for Serious Minds Math Games with Cards and Dice presented at NAGC November, 2013 Ready, Set, Go! Math Games for Serious Minds Rande McCreight Lincoln Public Schools Lincoln, Nebraska Math Games with Cards Close to 20 -

More information