Fruit Snake SECTION 1

Size: px
Start display at page:

Download "Fruit Snake SECTION 1"

Transcription

1 Fruit Snake SECTION 1

2 For the first full Construct 2 game you're going to create a snake game. In this game, you'll have a snake that will "eat" fruit, and grow longer with each object or piece of fruit it eats. The game ends when the snake collides with the wall or when the snake collides with its own tail.

3 SECTION OBJECTIVES Before you start, read the section objectives below. These objectives will be completed at the end of this section. A snake head that will move forward, and rotate based on input from the keyboard The game will end when the snake collides with a wall An object that will be "eaten" when it collides with the snake head

4 First things first, open a new Construct project by going to the file menu and selecting New

5 Select New empty project and click Open

6 Once the project is open it's time to change some information. In the About section of your Properties bar, located on the left side of the screen, change the project name to Fruit Snake.

7 Also, in the Properties bar change the Window Size in the Project settings section to a width of 1280 and height of 720. Both of these numbers are using pixel units. You can do this by typing the comma separated numbers in the Window Size box or expanding the Window Size property and typing the width and height in their respective boxes.

8 Now that the window size is set you'll want to set the size of the layout to 1280 x 720 as well. To do this go to the Projects bar, located on the right side, and select Layout 1 from inside the Layout's folder.

9 Once selected go back over to the Properties bar, where it's showing the Layout properties for Layout 1. Here set the layout size to 1280 x 720 just like you did for the window size.

10 With the Layout properties selected you now need to change the name of the layout. It's important to keep all aspects of your games well documented with useful names and comments. As you move forward in this class, the games you build become more complex. Without proper names and comments it makes it harder to find and change different items within your game.

11 To change the name of the layout, simply click the box next to Name in the Layout properties. This will highlight the current name of "Layout 1" which we will change to Game.

12 Now that the layout is renamed, you'll want to rename the event sheet also. Currently the event sheet is named "Event sheet 1", you'll want to rename it to show that it corresponds with the game layout. To rename the event sheet, go back to the Projects bar. Here right-click on Event sheet 1, inside the Event sheets folder and select Rename. Now type in the new name which will be esgame.

13 OBJECTIVE 1 - BUILD A MOVING SNAKE HEAD Now that the project is set up you're ready to begin building the game itself! If you remember, the first objective of this section was to build a moving snake head. To do that, you first need to add a new object for the snake head.

14 First thing you need to do this right-click on our blank layout (anywhere) and select Insert new object.

15 Doing this will load an Insert a new object window. In this window, you're going to select Sprite. Below in the field titled "Name when inserted:" change Sprite to Snakehead and then click Insert. Once you click insert, a set of crosshairs will appear. Click anywhere on your blank layout to create the sprite.

16 You'll now see three windows popup. These three windows make up the sprite image and animation editors.

17 At this point in creating the game don't worry about making everything look nice and polished since right now the focus is just on getting the functionality built. With that being said, you still need some kind of image to represent a snake's head to help test the game as it is built. To start making the snake head, first resize the sprite. To do this click the resize button.

18 In the "Resize image canvas" window set the width and height to 40 and click OK. This will set the available size to draw the sprite to 40 pixels by 40 pixels.

19 With the resized canvas visible, click the fill tool (looks like a paint bucket) located on the left of the Edit image window, this will bring up the color palette. In the color palette, select any color besides white for your snake head.

20 When you have your color selected, click inside the canvas located in the edit image window to make your snake head your selected color.

21 You'll want to add eyes to your snake head so the player can see which direction it's moving. To do this, you'll want to zoom in to enlarge the canvas area so you can add detail. This can be done by clicking Zoom in a few times.

22 Once zoomed in, select the pencil tool and in the color palette set the color to white by using the slider below the color picker and moving it all the way to the right.

23 Once the tool and color are set use the pencil tool create two eyes on the right side of our sprite so it appears the snake is facing right. Not perfect? Don't worry about making the dots perfectly aligned since this won't be the final image we use.

24 Close the image editor to get back to the layout where you can see the newly created snake head. Click on the snake head sprite to bring up its properties in the property bar. Within the Behaviors section click the Behaviors link.

25 In the Behaviors window, click the plus icon to add a new behavior. Then in the Add behavior window scroll down to the Movements section and double-click the Bullet behavior or select it and click Add.

26 The Bullet behavior moves an object forward at its current angle and at a set speed. This is used to keep the snake continuously moving. To see this in action, close the behaviors window and click the run layout button at the top of the screen.

27 As you can see, the snake moves but currently there's no way to control it. You can fix this by adding the first event to your project.

28 Go back to Construct and click on the event sheet tab label esgame. This can be found in the Projects Bar. To move the snake, you want to use the arrow keys on the keyboard to make the snake turn. To be able to do that, first you need to let Construct know to use the keyboard.

29 In the Projects panel, right-click on the Object types folder and select Insert new object. Scroll down to the inputs section and double-click Keyboard to add it.

30 Now that you added the keyboard to the project, you now need to add an event. Click the Add event link to bring up the Add event window.

31 This window is where the condition for the event is selected. Double-click on the keyboard object, or select and click next.

32 The next screen will show the conditions you can use to trigger our action. To have the snake turn when an arrow key is pressed down you'll want to use the condition of Key is down. Double-click Key is down, or select and press next, the Key is down event.

33 In the Parameters window that appears, click the click to choose button next to Key to bring up the Choose a key window. When this window appears, click the left arrow key. You'll see that Construct detects this and will put it in the field below "Press a key:". You can then press OK to close the window then Done to add our condition.

34 On the event sheet, you can now see the condition of "Left arrow is down" that we can add an action to. Click Add action next to the condition.

35 In the Add action screen, double-click the SnakeHead object. On the next screen, scroll down to Bullet actions and select Set angle of motion and click next.

36 For the condition of having the left arrow down, you'll want the snake to turn counter-clockwise. When an object moves counter-clockwise in Construct we're decreasing it's angle. To properly make our snake turn we will need to write an expression to calculate the new angle.

37 First clear out the text box next to Angle. Then go to the Objects with expressions window and double-click SnakeHead

38 This will bring up all the available expressions within our SnakeHead object we can use in our actions. The expression you'll want to use is Angle. Double-click angle and you'll see it will input SnakeHead.Angle into the text box in the Parameters window.

39 This expression will give the current angle of the snake head. To make the snake turn left, you'll simply subract from its current angle. At the end of the expression type -4 and click Done.

40 You can see on the event sheet that the condition and action created make the snake head rotate left. Click the run layout button, and use the left arrow key to rotate the snake.

41 You now have the snake rotating left, but you still need to add the condition and action to have the snake turn right. You can add a whole new event like you just did for the left arrow, but since the event for the left and right arrows is so similar you can simply copy the left arrow event and make a few adjustments to it.

42 To copy hold down the Ctrl key and click to the left of the condition to select the whole event. Now hold the mouse button down and drag down until a black line appears below the event. Now release the mouse and you can see a duplicate event is created.

43 To modify this event to make it so the right arrow rotates the snake clockwise you just need to make two changes, one to the condition and one to the action.

44 First, double-click on the Left arrow is down condition in the new event to bring up the Parameters window. Like you did with the first condition click the button next to Key that currently says Left arrow. This loads the Choose a key window, this time press the right key.

45 Press Ok to close the window and then Done to get back to the event sheet. You can see now that the condition is set to Right arrow is down. Now to change the action, double-click the Set bullet angle action on the Right arrow event. In the Parameters window that appears, simply change the action to +4 instead of subtracting and click Done.

46 QUIZ TIME If instead you wanted the right key to run the snake directly down which angle would you use?

47 Now when you run the game you can see you're able to turn the snake left and right as it moves. STOP! READ THIS BEFORE CONTINUING! Make sure to save your game. You don't want to lose all your work.

48 OBJECTIVE 2 - CONTAINING SNAKE SPRITE WITHIN LAYOUT Now that the snake is moving, you want to make it so the snake is contained to the current layout, so you'll tackle that issue next. To solve this problem, you're going to create invisible walls around the layout that will "kill" the snake when he/she collides with it. To get started, go back to the Game layout screen, right-click anywhere on the blank layout and select Insert new object.

49 In the Insert New Object window, select the sprite again and change the name to Wall. Click Insert when this is done

50 When the crosshairs appear, click near the top-left corner of the layout to insert the object and bring up the sprite editor.

51 For this wall sprite you won't have to worry about changing the size, this will be done in your layout editor. Instead, select the fill tool (paint bucket) and in the color selector select a yellow color and click in the sprite to fill it. Go ahead and close the image editor when this is done.

52 To create your first wall piece, click on the sprite to make sure it's selected. In the Properties Bar you're going to go to the Common section and change some values. First set the size to a width of 10 and height of 720.

53 Next, you want to change the wall's position. The position of an object is based on x and y values with the origin (0,0) located at the top-left. The x values increase left to right, and the y values increase top to bottom. For this sprite you want to set it to the left edge of the layout. So set the X to -5, and Y to 360.

54 QUIZ TIME Assuming the layout is 1280px X 720px, which dot would represent the appoximate point of a sprite image placed at (200,200)?

55 To create the rest of our surrounding wall you'll need to copy the current wall sprite to make a new instance. Instances of sprites are able to share properties, but there's also times where they'll have differnt values of properties. This is covered in more depth later in this section.

56 To easily create a new instance of a sprite hold down the CTRL button and then click and drag on the sprite. Do this with our wall sprite to create a new instance of the sprite.

57 Click on the newly created sprite and in it's properties you'll see it kept the same size as the previous sprite so all you'll have to do to make it the right-side wall is to change its position. Set the position of the new sprite to 1285,360 (x value of 1285 and y value of 360).

58 Like previously, hold CTRL and click and drag one of the wall sprites to create a new one. To make this new sprite our top-side wall you'll have to change its size and position. For the new sprite, set the size to 1280,10 and its position to 640,-5.

59 Clone the top-side wall sprite and set its position to 640,725 to complete all four sides of the surrounding wall.

60 Now that the wall is created you need to set up an event to stop the game when the snake head hits the wall. To do this, go to the event sheet and add a new event. In the Add event window, select the SnakeHead as the condition object and click Next.

61 For this condition you're going to go to the Collisions section and select the On collision with another object event.

62 In the Parameters window, click the button next to object and in the new window select the Wall object. Click Done to insert the condition.

63 Now you can add an action to the new condition. Click the Add action link next to the condition. Select the SnakeHead as the object to which to add an action. In the list of actions, scroll down to themisc section and select Destroy.

64 If you run the layout now you'll see that in addition to being able to turn the snake, when it goes off the screen it's destroyed. If you remember when we set the position of our wall objects they were located outside of the layout. Since these objects were not within the layout boundries they are not visible when the layout is ran, but events associated with those objects still run. STOP! READ THIS BEFORE CONTINUING! Make sure to save your game. You don't want to lose all your work.

65 OBJECTIVE 3 - HAVING THE SNAKE EAT FRUIT Now you just have one objective left to do to complete the first section of the game. That objective is to add an object that will get eaten by your snake. To start, go back to the layout and insert a new sprite object named Fruit. When the crosshairs appear click on the right side of the layout to insert our spite and bring up the sprite editor.

66 In the sprite editor, click the resize button and make the sprite's height and width both 32. Next, select the fill tool, pick a color you haven't used yet, and click on the sprite to fill it. You can close the editor when you're done with these steps.

67 With the sprite inserted go back to the event sheet and add a new event. For the condition object you're going to select the snake head again and for the condition you're going to select the same On collision with another object action as used previously. In the Parameters window for the collision object you're going to select the new Fruit object this time.

68 Now click next to the new condition to add an action to it. For the object select Fruit and for the event you're going to use the Destroy event like previously.

69 If you run the layout now, you'll see that when the snake collides with the fruit the snake will "eat" the fruit. In the snake game when it eats a fruit we want a new fruit to appear that it can eat. To do this, you're going to add another event to the snake head and fruit condition to make a new fruit appear.

70 Back on the event sheet click the Add action link under the Fruit-Destroy action.

71 This time use a System event to create a new object. Select the System object and for the event select Create object under the General section.

72 In the Parameters window, click the Object to create button and select Fruit object. For the x and y values we want to have Construct create the new fruit at a random position on the layout. You can do this using a couple expressions.

73 Clear the value in the X field and start to type random. You will see a box appear that contains the functions you can use in this expression. When "random" is highlight you can press Enter to insert it into the X value field.

74 Inside the parentheses after random you will insert two values to tell Construct a range to choose a random value from. The first value in the parentheses will indicate the lower value for the range, while the second value will indicate the upper value of the range. For the range in this expression you will set it so the fruit will appear anywhere on the layout.

75 With random inserted into the field type an open parenthese (. For the first value type 0 and then insert a comma. For the second value you want the width of your layout, which is But instead of putting the value in yourself, you can tell construct to insert that value. Start to type out LayoutWidth and when you see it appear and in the list, highlight it and press Enter (or double click) to select.

76 Finish the expression in the X field by inputing a closing parenthese: ). Now for your Y value you're going to do the same, but instead of LayoutWidth use LayoutHeight. When you're done, the Parameters window should look as follows. STOP! READ THIS BEFORE CONTINUING! Make sure to save your game. You don't want to lose all your work.

77 Click Done to close your Parameters window which will insert a new action. Now run the layout and you can see that you're able to eat a fruit object and a new one appears, and this will keep happening as you eat fruit.

78 SUCCESS! YOU'VE JUST FINISHED THIS SECTION.

79 I bet you didn't know that you can play this game, as well as all the Game:IT games by visiting the STEM Fuse Arcade. PLAY SOME GAMES (

Creating Breakout - Part 2

Creating Breakout - Part 2 Creating Breakout - Part 2 Adapted from Basic Projects: Game Maker by David Waller So the game works, it is a functioning game. It s not very challenging though, and it could use some more work to make

More information

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

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

More information

Shape Cluster Photo Written by Steve Patterson

Shape Cluster Photo Written by Steve Patterson Shape Cluster Photo Written by Steve Patterson Before After Step 1: Create A New Document Let's begin by creating a new Photoshop document. Go up to the File menu in the Menu Bar along the top of the screen

More information

GIMP WEB 2.0 BUTTONS

GIMP WEB 2.0 BUTTONS GIMP WEB 2.0 BUTTONS Web 2.0 Navigation: Bar with Icons WEB 2.0 NAVIGATION: NAVIGATION BAR WITH ICONS This navigation bar will be designed with four clickable text links and icon links. In the Menus section,

More information

Goldfish 4. Quick Start Tutorial

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

More information

Photoshop tutorial: Final Product in Photoshop:

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

More information

Asteroid Destroyer How it Works

Asteroid Destroyer How it Works Asteroid Destroyer How it Works This is a summary of some of the more advance coding associated with the Asteroid Destroyer Game. Many of the events with in the game are common sense other than the following

More information

Inkscape tutorial: Donate button

Inkscape tutorial: Donate button Inkscape tutorial: Donate button By: Very Simple Designs (BDT466) Web Site: http://verysimpledesigns.com/vectors/inkscape-tutorial-donate-button.html This Inkscape beginner tutorial teaches the viewer

More information

To get a copy of this image you right click on the image with your mouse and you will get a menu. Scroll down the menu and select "Save Image As".

To get a copy of this image you right click on the image with your mouse and you will get a menu. Scroll down the menu and select Save Image As. The most popular lesson I teach is editing photographs. Everyone wants to put his or her brother's head on a monkey or something similar. This is also a lesson about "emphasis". You can cause more individuals

More information

2. If a window pops up that asks if you want to customize your color settings, click No.

2. If a window pops up that asks if you want to customize your color settings, click No. Practice Activity: Adobe Photoshop 7.0 ATTENTION! Before doing this practice activity you must have all of the following materials saved to your USB: runningshoe.gif basketballshoe.gif soccershoe.gif baseballshoe.gif

More information

Adobe Flash CS5. Creating a web banner. Garvin Ling Juan Santa Cruz Bruno Venegas

Adobe Flash CS5. Creating a web banner. Garvin Ling Juan Santa Cruz Bruno Venegas Adobe Flash CS5 Creating a web banner Garvin Ling Juan Santa Cruz Bruno Venegas Introduction In this tutorial, you will be guided through a step-by-step process on how to create your very own animated

More information

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more.

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more. Microsoft PowerPoint 2016 Part 1: The Basics Opening PowerPoint Double click on the PowerPoint icon on the desktop. When you first open PowerPoint you will see a list of new presentation themes. You can

More information

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen.

SIMPLE TEXT LAYOUT FOR COREL DRAW. When you start Corel Draw, you will see the following welcome screen. SIMPLE TEXT LAYOUT FOR COREL DRAW When you start Corel Draw, you will see the following welcome screen. A. Start a new job by left clicking New Graphic. B. Place your mouse cursor over the page width box.

More information

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

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

More information

Interactive Powerpoint. Jessica Stenzel Hunter Singleton

Interactive Powerpoint. Jessica Stenzel Hunter Singleton Interactive Powerpoint Jessica Stenzel Hunter Singleton Table of Contents iii Table of Contents Table of Contents... iii Introduction... 1 Basics of Powerpoint... 3 How to Insert Shapes... 3 How to Insert

More information

GreenFolders User Manual

GreenFolders User Manual GreenFolders User Manual Welcome! Welcome to GreenFolders the Electronic Records Management Solution. GreenFolders allows you to store and retrieve files with many easy-to-use features for working with

More information

Animating the Page IN THIS CHAPTER. Timelines and Frames

Animating the Page IN THIS CHAPTER. Timelines and Frames e r ch02.fm Page 41 Friday, September 17, 1999 10:45 AM c h a p t 2 Animating the Page IN THIS CHAPTER Timelines and Frames Movement Tweening Shape Tweening Fading Recap Advanced Projects You have totally

More information

Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques

Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques Creating a superhero using the pen tool Topics covered: Pen Tool, Fill Layers, Color Range, Levels Adjustments, Magic Wand tool, and shadowing techniques Getting Started 1. Reset your work environment

More information

Making Your First Character

Making Your First Character Create a new canvas on Photoshop (File > New) and set this to 32 x 32 pixels select a transparent background. Remember to set up your preferences under Edit > Preferences > Guides, Grid & Slices Also remember

More information

Tangents. In this tutorial we are going to take a look at how tangents can affect an animation.

Tangents. In this tutorial we are going to take a look at how tangents can affect an animation. Tangents In this tutorial we are going to take a look at how tangents can affect an animation. One of the 12 Principles of Animation is called Slow In and Slow Out. This refers to the spacing of the in

More information

animation, and what interface elements the Flash editor contains to help you create and control your animation.

animation, and what interface elements the Flash editor contains to help you create and control your animation. e r ch02.fm Page 43 Wednesday, November 15, 2000 8:52 AM c h a p t 2 Animating the Page IN THIS CHAPTER Timelines and Frames Movement Tweening Shape Tweening Fading Recap Advanced Projects You have totally

More information

Recipes4Success. Draw and Animate a Rocket Ship. Frames 5 - Drawing Tools

Recipes4Success. Draw and Animate a Rocket Ship. Frames 5 - Drawing Tools Recipes4Success You can use the drawing tools and path animation tools in Frames to create illustrated cartoons. In this Recipe, you will draw and animate a rocket ship. 2012. All Rights Reserved. This

More information

Making use of other Applications

Making use of other Applications AppGameKit 2 Collision Using Arrays Making use of other Applications Although we need game software to help makes games for modern devices, we should not exclude the use of other applications to aid the

More information

Using Flash Animation Basics

Using Flash Animation Basics Using Flash Contents Using Flash... 1 Animation Basics... 1 Exercise 1. Creating a Symbol... 2 Exercise 2. Working with Layers... 4 Exercise 3. Using the Timeline... 6 Exercise 4. Previewing an animation...

More information

Education and Training CUFMEM14A. Exercise 2. Create, Manipulate and Incorporate 2D Graphics

Education and Training CUFMEM14A. Exercise 2. Create, Manipulate and Incorporate 2D Graphics Education and Training CUFMEM14A Exercise 2 Create, Manipulate and Incorporate 2D Graphics Menu Exercise 2 Exercise 2a: Scarecrow Exercise - Painting and Drawing Tools... 3 Exercise 2b: Scarecrow Exercise

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

GETTING AROUND STAGE:

GETTING AROUND STAGE: ASM FLASH INTRO FLASH CS3 is a 2D software that is used extensively for Internet animation. Its icon appears as a red square with a stylized Fl on it. It requires patience, because (like most computer

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC

SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC Photo Effects: Snowflakes Photo Border (Photoshop CS6 / CC) SNOWFLAKES PHOTO BORDER - PHOTOSHOP CS6 / CC In this Photoshop tutorial, we ll learn how to create a simple and fun snowflakes photo border,

More information

SolidWorks Intro Part 1b

SolidWorks Intro Part 1b SolidWorks Intro Part 1b Dave Touretzky and Susan Finger 1. Create a new part We ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select File New Templates IPSpart If the SolidWorks

More information

Adobe Illustrator. Quick Start Guide

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

More information

The Fundamentals. Document Basics

The Fundamentals. Document Basics 3 The Fundamentals Opening a Program... 3 Similarities in All Programs... 3 It's On Now What?...4 Making things easier to see.. 4 Adjusting Text Size.....4 My Computer. 4 Control Panel... 5 Accessibility

More information

REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB!

REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! CS 1033 Multimedia and Communications Lab 8: Animation with Video Timeline REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! LAB #8 - Exercise 1 Objectives: Upon completion of Exercise 1 you should be

More information

ICS 61 Game Systems and Design Introduction to Scratch

ICS 61 Game Systems and Design Introduction to Scratch ICS 61, Winter, 2015 Introduction to Scratch p. 1 ICS 61 Game Systems and Design Introduction to Scratch 1. Make sure your computer has a browser open at the address http://scratch.mit.edu/projects/editor/.

More information

If there is anything that is unclear to you, or you spot any mistakes, please send to Suggestions are always welcome.

If there is anything that is unclear to you, or you spot any mistakes, please send  to Suggestions are always welcome. This tutorial will show you the steps to create this simple Fall Fest Flyer using the Professional Graphic Design Application - Inkscape. Steps 01: Document Setup 02: Create Rectangle 03: Set Rounded Corners

More information

Step 1: Create A New Photoshop Document

Step 1: Create A New Photoshop Document Snowflakes Photo Border In this Photoshop tutorial, we ll learn how to create a simple snowflakes photo border, which can be a fun finishing touch for photos of family and friends during the holidays,

More information

Add Photo Mounts To A Photo With Photoshop Part 1

Add Photo Mounts To A Photo With Photoshop Part 1 Add Photo Mounts To A Photo With Photoshop Part 1 Written by Steve Patterson. In this Photoshop Effects tutorial, we ll learn how to create and add simplephoto mounts to an image, a nice finishing touch

More information

HAPPY HOLIDAYS PHOTO BORDER

HAPPY HOLIDAYS PHOTO BORDER HAPPY HOLIDAYS PHOTO BORDER In this Photoshop tutorial, we ll learn how to create a simple and fun Happy Holidays winter photo border! Photoshop ships with some great snowflake shapes that we can use in

More information

Acrobat X Professional

Acrobat X Professional Acrobat X Professional Toolbar Well Page Navigations/Page Indicator Buttons for paging through document Scroll Bar/box page indicator appears when using the scroll button to navigate. When you release

More information

Introduction to SolidWorks Basics Materials Tech. Wood

Introduction to SolidWorks Basics Materials Tech. Wood Introduction to SolidWorks Basics Materials Tech. Wood Table of Contents Table of Contents... 1 Book End... 2 Introduction... 2 Learning Intentions... 2 Modelling the Base... 3 Modelling the Front... 10

More information

Creating Vector Shapes Week 2 Assignment 1. Illustrator Defaults

Creating Vector Shapes Week 2 Assignment 1. Illustrator Defaults Illustrator Defaults Before we begin, we are going to make sure that all of us are using the same settings within our application. For this class, we will always want to make sure that our application

More information

User s Guide

User s Guide User s Guide 03.28.2017 Accessing Pathfinder Edge Pathfinder Edge can be accessed from anywhere you have an internet connection and a web browser. To ensure the best performance, we recommend using Pathfinder

More information

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder.

Lesson 1 using Dreamweaver CS3. To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Lesson 1 using Dreamweaver CS3 To get started on your web page select the link below and copy (Save Picture As) the images to your image folder. Click here to get images for your web page project. (Note:

More information

Designing the Layout of External Content Using the Widgets Tool

Designing the Layout of External Content Using the Widgets Tool Designing the Layout of External Content Using the Widgets Tool First Published: August 2, 2012 This module describes how to design the layout for display of the data that you have integrated and mapped

More information

To build shapes from scratch, use the tools are the far right of the top tool bar. These

To build shapes from scratch, use the tools are the far right of the top tool bar. These 3D GAME STUDIO TUTORIAL EXERCISE #5 USE MED TO SKIN AND ANIMATE A CUBE REVISED 11/21/06 This tutorial covers basic model skinning and animation in MED the 3DGS model editor. This exercise was prepared

More information

SolidWorks 2½D Parts

SolidWorks 2½D Parts SolidWorks 2½D Parts IDeATe Laser Micro Part 1b Dave Touretzky and Susan Finger 1. Create a new part In this lab, you ll create a CAD model of the 2 ½ D key fob below to make on the laser cutter. Select

More information

Lesson 1 Excel Tutorial Learning how to use Microsoft Excel 2010 page 1

Lesson 1 Excel Tutorial Learning how to use Microsoft Excel 2010 page 1 Lesson 1 Excel Tutorial Learning how to use Microsoft Excel 2010 page 1 Step 1: When you first open up Excel 2010, this is what you will see. This is considered an Excel worksheet. Step 2: Notice the bottom

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Learning to use the drawing tools

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

More information

Excel 2013 Part 2. 2) Creating Different Charts

Excel 2013 Part 2. 2) Creating Different Charts Excel 2013 Part 2 1) Create a Chart (review) Open Budget.xlsx from Documents folder. Then highlight the range from C5 to L8. Click on the Insert Tab on the Ribbon. From the Charts click on the dialogue

More information

REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB!

REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! CS 1033 Multimedia and Communications Lab 07: Introduction to Animation using Photoshop REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! LAB #7 - Exercise 1 Objectives: Upon completion of Exercise 1 you

More information

Visual C# Program: Simple Game 3

Visual C# Program: Simple Game 3 C h a p t e r 6C Visual C# Program: Simple Game 3 In this chapter, you will learn how to use the following Visual C# Application functions to World Class standards: Opening Visual C# Editor Beginning a

More information

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

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

More information

Quick Start Guide to using Light Converse along with Pangolin LD2000 and BEYOND

Quick Start Guide to using Light Converse along with Pangolin LD2000 and BEYOND Quick Start Guide to using Light Converse along with Pangolin LD2000 and BEYOND First Steps Regardless of when or from whom you purchased Light Converse, we recommend you do the following steps before

More information

a child-friendly word processor for children to write documents

a child-friendly word processor for children to write documents Table of Contents Get Started... 1 Quick Start... 2 Classes and Users... 3 Clicker Explorer... 4 Ribbon... 6 Write Documents... 7 Document Tools... 8 Type with a Keyboard... 12 Write with a Clicker Set...

More information

Graphic Design & Digital Photography. Photoshop Basics: Working With Selection.

Graphic Design & Digital Photography. Photoshop Basics: Working With Selection. 1 Graphic Design & Digital Photography Photoshop Basics: Working With Selection. What You ll Learn: Make specific areas of an image active using selection tools, reposition a selection marquee, move and

More information

1.1 Considering for Choosing Layout in SmartArt Graphics

1.1 Considering for Choosing Layout in SmartArt Graphics 1. SmartArt A SmartArt graphic is a visual representation of your information that you can quickly and easily create, choosing from among many different layouts, to effectively communicate your message

More information

Function Grapher Demystified Step 1

Function Grapher Demystified Step 1 Function Grapher Demystified Step 1 MathDL Flash Forum Learning Center Functions Grapher Demystified by Barbara Kaskosz and Doug Ensley In our MathDL Flash Forum article "Flash Tools for Developers: Function

More information

Working With Images: Intermediate Photoshop

Working With Images: Intermediate Photoshop Working With Images: Intermediate Photoshop Viewing Information in the Layers Palette 1. Choose File > Open and open the Start.psd file in the Lesson01 folder located in the PS_Workshop folder on the desktop.

More information

Create Sponsor Scroll

Create Sponsor Scroll Appendix B Create Sponsor Scroll TABLE OF CONTENTS... 1 CREATE, ANIMATE AND UPLOAD SPONSOR LOGOS Create... 2 Animate... 5 Upload... 6 Please note, this process requires two different programs, which should

More information

The original image. Let s get started! The final result.

The original image. Let s get started! The final result. Vertical Photo Panels Effect In this Photoshop tutorial, we ll learn how to create the illusion that a single photo is being displayed as a series of vertical panels. It may look complicated, but as we

More information

This view is called User Persp - perspective. It's good for rendering, but not for editing. Ortho will be better.

This view is called User Persp - perspective. It's good for rendering, but not for editing. Ortho will be better. Create a crate simple placeable in Blender. In this tutorial I'll show you, how to create and texture a simple placeable, without animations. Let's start. First thing is always to have an idea, how you

More information

Adobe Photoshop CS2/CS3: introduction

Adobe Photoshop CS2/CS3: introduction Adobe Photoshop CS2/CS3: introduction Lessons Lesson 1: Overview of Adobe Photoshop CS2/CS3 After you learn about the Photoshop workspace, you'll learn to create a new image, select it, and make an example

More information

ITP 101 Project 2 - Photoshop

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

More information

PREZI QUICK START GUIDE

PREZI QUICK START GUIDE PREZI QUICK START GUIDE What is Prezi? On a mission to end boring presentations and make you a great presenter, Prezi is presentation software, which, unlike slides that literally box you in, lets you

More information

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview:

Handout Objectives: a. b. c. d. 3. a. b. c. d. e a. b. 6. a. b. c. d. Overview: Computer Basics I Handout Objectives: 1. Control program windows and menus. 2. Graphical user interface (GUI) a. Desktop b. Manage Windows c. Recycle Bin d. Creating a New Folder 3. Control Panel. a. Appearance

More information

Quick Guide for Photoshop CC Basics April 2016 Training:

Quick Guide for Photoshop CC Basics April 2016 Training: Photoshop CC Basics Creating a New File 1. Click File > New 2. Keep Default Photoshop Size selected in the Preset drop-down list. 3. Click OK. Showing Rulers 1. On the Menu bar, click View. 2. Click Rulers.

More information

Adobe Flash CS3 Reference Flash CS3 Application Window

Adobe Flash CS3 Reference Flash CS3 Application Window Adobe Flash CS3 Reference Flash CS3 Application Window When you load up Flash CS3 and choose to create a new Flash document, the application window should look something like the screenshot below. Layers

More information

Center for Faculty Development and Support Creating Powerful and Accessible Presentation

Center for Faculty Development and Support Creating Powerful and Accessible Presentation Creating Powerful and Accessible Presentation PowerPoint 2007 Windows Tutorial Contents Create a New Document... 3 Navigate in the Normal View (default view)... 3 Input and Manipulate Text in a Slide...

More information

LinkMotion and CorelDraw 9, 10, 11, 12, X3, X4, X5, X6, X7 and X8:

LinkMotion and CorelDraw 9, 10, 11, 12, X3, X4, X5, X6, X7 and X8: LinkMotion and CorelDraw 9, 10, 11, 12, X3, X4, X5, X6, X7 and X8: After you install LinkMotion software and set up all settings launch CorelDraw software. Important notes: Solustan s LinkMotion driver

More information

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

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

More information

Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics. Choosing a Design. Format Background

Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics. Choosing a Design. Format Background Microsoft PowerPoint 2016 Part 2: Notes, Links, & Graphics Choosing a Design Open PowerPoint. Click on Blank Presentation. Click on the Design tab. Click on the design tab of your choice. In part one we

More information

-Remember to always hit Command + S every time you make a change to your project going forward.

-Remember to always hit Command + S every time you make a change to your project going forward. -Open Animate -Under Create New - Select ActionScript 3.0 -Choose Classic as the Design type located in the upper right corner -Animate workspace shows a toolbar, timeline, stage, and window tabs -From

More information

Screenshots Made Easy

Screenshots Made Easy Screenshots Made Easy Welcome to the simplest screenshot tutorial ever. We'll be using the simplest graphic editing tool ever: Microsoft Paint. The goal of this tutorial is to get you making your own screenshots

More information

Lesson 4 Page Styles

Lesson 4 Page Styles Lesson 4 Page Styles The Concept of Styles: Styles: In the context of LibreOffice Writer, Styles refers to the characteristics of a part of a document. For example, a Page Style includes information about

More information

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage:

AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: Page 1 of 18 Using AutoCollage 2008 AutoCollage 2008 makes it easy to create an AutoCollage from a folder of Images. To create an AutoCollage: 1. Click on a folder name in the Image Browser. 2. Once at

More information

How to Create Greeting Cards using LibreOffice Draw

How to Create Greeting Cards using LibreOffice Draw by Len Nasman, Bristol Village Ohio Computer Club If you want to create your own greeting cards, but you do not want to spend a lot of money on special software, you are in luck. It turns out that with

More information

Microsoft Publisher 2010 Tecumseh District Library

Microsoft Publisher 2010 Tecumseh District Library 1 Microsoft Publisher 2010 Tecumseh District Library by Anne Keller, Teen Services Librarian 2 Microsoft Publisher 2010 Microsoft Publisher is a powerful desktop publishing program that can create posters,

More information

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics

PowerPoint Introduction. Video: Slide Basics. Understanding slides and slide layouts. Slide Basics PowerPoint 2013 Slide Basics Introduction PowerPoint presentations are made up of a series of slides. Slides contain the information you will present to your audience. This might include text, pictures,

More information

Avigilon Control Center Enterprise Web Client User Guide. Version 5.8.4

Avigilon Control Center Enterprise Web Client User Guide. Version 5.8.4 Avigilon Control Center Enterprise Web Client User Guide Version 5.8.4 2006-2016, Avigilon Corporation. All rights reserved. AVIGILON, the AVIGILON logo, AVIGILON CONTROL CENTER and ACC are trademarks

More information

Microsoft. An Introduction

Microsoft. An Introduction Microsoft Amarillo College Revision Date: February 7, 2011 Table of Contents SLIDE MASTER... 2 ACCESSING THE SLIDE MASTER... 2 BACKGROUNDS... 2 FONT COLOR OF SLIDE TITLES... 3 FONT COLOR OF BULLET LEVELS...

More information

WEEK NO. 12 MICROSOFT EXCEL 2007

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

More information

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename.

1. Right-click the worksheet tab you want to rename. The worksheet menu appears. 2. Select Rename. Excel 2010 Worksheet Basics Introduction Page 1 Every Excel workbook contains at least one or more worksheets. If you are working with a large amount of related data, you can use worksheets to help organize

More information

Contents. I. Starting a New Presentation Try it! II. Choosing a Theme III. Tailoring the theme IV Background Styles...

Contents. I. Starting a New Presentation Try it! II. Choosing a Theme III. Tailoring the theme IV Background Styles... Contents PowerPoint 2007... 2 I. Starting a New Presentation... 4... 4 II. Choosing a Theme... 4... 4 III. Tailoring the theme... 5 IV Background Styles... 5... 5 V. Add slides, pick layouts... 6... 6

More information

Windows 10 Quick Tips

Windows 10 Quick Tips Windows 10 Quick Tips Contents Drag to Fit Windows... 2 Quickly Jump Between Virtual Desktops... 2 Move open windows between virtual desktops... 2 Rotate Your Screen via Keyboard Ctrl-Alt-D Arrows... 3

More information

Edupen Pro User Manual

Edupen Pro User Manual Edupen Pro User Manual (software for interactive LCD/LED displays and monitors) Ver. 3 www.ahatouch.com Some services in Edupen Pro require dual touch capability. In order to use dual touch, your computer

More information

SmartArt Office 2007

SmartArt Office 2007 SmartArt Office 2007 This is not an official training handout of the, Davis School District SmartArt... 2 Inserting SmartArt... 2 Entering the Text... 2 Adding a Shape... 2 Deleting a Shape... 2 Adding

More information

Budget Exercise for Intermediate Excel

Budget Exercise for Intermediate Excel Budget Exercise for Intermediate Excel Follow the directions below to create a 12 month budget exercise. Read through each individual direction before performing it, like you are following recipe instructions.

More information

Photoshop Fundamentals

Photoshop Fundamentals Lesson 3 Photoshop Fundamentals Photoshop Fundamentals How to Navigate your Document Zooming in and out To zoom in and out on your Photoshop document, hold down the Command key (Ctrl on Win) and press

More information

Using StarImpress. A brief introduction

Using StarImpress. A brief introduction Using StarImpress A brief introduction What is Impress? Impress is the open source (free) alternative to PowerPoint You can Impress for the same things you would do in PowerPoint Create a lesson with handouts

More information

Application of Skills: Microsoft Excel 2013 Tutorial

Application of Skills: Microsoft Excel 2013 Tutorial Application of Skills: Microsoft Excel 2013 Tutorial Throughout this module, you will progress through a series of steps to create a spreadsheet for sales of a club or organization. You will continue to

More information

Lesson 1 New Presentation

Lesson 1 New Presentation Powerpoint Lesson 1 New Presentation 1. When PowerPoint first opens, there are four choices on how to create a new presentation. You can select AutoContent wizard, Template, Blank presentation or Open

More information

HTML Exercise 21 Making Simple Rectangular Buttons

HTML Exercise 21 Making Simple Rectangular Buttons HTML Exercise 21 Making Simple Rectangular Buttons Buttons are extremely popular and found on virtually all Web sites with multiple pages. Buttons are graphical elements that help visitors move through

More information

Layers (Just the Basics) By Jerry Koons

Layers (Just the Basics) By Jerry Koons and their applications are always a topic of concern and confusion, especially to those that are new to the Photoshop and Elements programs. will become one of your best tools after you understand their

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box.

Text box. Command button. 1. Click the tool for the control you choose to draw in this case, the text box. Visual Basic Concepts Hello, Visual Basic See Also There are three main steps to creating an application in Visual Basic: 1. Create the interface. 2. Set properties. 3. Write code. To see how this is done,

More information

DOING MORE WITH WORD: MICROSOFT OFFICE 2010

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

More information

Warping & Blending AP

Warping & Blending AP Warping & Blending AP Operation about AP This AP provides three major functions including Warp, Edge Blending and Black Level. If the AP is already installed, please remove previous version before installing

More information

FrontPage. Directions & Reference

FrontPage. Directions & Reference FrontPage Directions & Reference August 2006 Table of Contents Page No. Open, Create, Save WebPages Open Webpage... 1 Create and Save a New Page... 1-2 Change the Background Color of Your Web Page...

More information