Rock Band. In this project you'll learn how to code your own musical instruments!

Similar documents
Fruit Machine. 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

REFERENCE GUIDE 1. INTRODUCTION

Scratch Primary Lesson 4

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

Make your own Temple Run game

1.0-Scratch Interface 1.1. Valuable Information

Microsoft PowerPoint Exercises 4

GarageBand 2.0 Getting Started

Click on various options: Publications by Wizard Publications by Design Blank Publication

After going through this lesson you would be able to:

Tutorial Use Ableton Live for a live set

Microsoft Excel 2013 Splitting Windows and Fixing Panes (Level 3)

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

Using Microsoft Access

REDUCING YOUR MICROSOFT OUTLOOK MAILBOX SIZE

Computer Science Education Week Teacher/Volunteer Guide

GarageBand 2.0 Recording, Editing, & Mixing

After you complete the survey, compare what you saw on the survey to the actual questions listed below:

CREATE A 3D MOVIE IN DIRECTOR

itunes 7.0 Fall 07 fall 2007

The main imovie window is divided into six major parts.

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 3

Microsoft Windows Overview Desktop Parts

Android Programming Family Fun Day using AppInventor

6 USING WINDOWS XP 6.1 INTRODUCTION

Apple Pro Training Series: Logic Pro X: Professional Music Production

Rhythm Rascal Quick Start Guide Overview

SolidWorks Tutorial 3 MAGNETIC BLOCK

1 Introduction. 2 Project Browser. 3 FlowStone Editor

How To Insert Hyperlinks In Powerpoint Powerpoint

PowerPoint 2007 Lesson 1: Getting Started

Section 1: Ribbon Customization

Creating a Poster in PowerPoint A. Set Up Your Poster

Section 5 Icons and Shortcuts

Mixing and blending Music with Audacity

In list view, the Finder window displays folder or volume contents as a list, which can be sorted by name, date, kind, or other criteria.

Cassette2CD Wizard User's Manual

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

STARTING WEBSTER...3 GETTING STARTED WITH WEBSTER TOOLS...5

Digital Marketing EasyEditor Guide Dynamic

Epson Brightlink Interactive Board and Pen Training. Step One: Install the Brightlink Easy Interactive Driver

Web Ambassador Training on the CMS

Create a report with formatting, headings, page numbers and table of contents

What is Skype? Skype is a free program that uses the latest technology to bring affordable and high-quality voice communications to people.

EDIT202 PowerPoint Lab Assignment Guidelines

The band. 4 Write sentences: Here students must rewrite the sentences given as negatives under the pictures.

Cerner Update October, 2010

Creating and Using Master Documents

A Quick Start Guide to Using PowerPoint For Image-based Presentations

CREATE AN ANIMATED AQUARIUM IN POWERPOINT

SMART Sympodium and Notebook Software 9.5

How to Build a Form in InDesign CS5

How to Use the Drawing Toolbar in Microsoft Word

Getting Started with WebSite Tonight

Quick Start Guide. Microsoft Publisher 2013 looks different from previous versions, so we created this guide to help you minimize the learning curve.

Text Basics. Introduction

Welcome to the topic on Master Data and Documents.

Lync 2013 FAQ s. How do I keep my Lync conversation window on top of all the other windows on my computer, so I can see it while I work?

What is idvd? idvd is a software program used to create menus for DVD projects and to burn video to DVDs.

Microsoft Word Quick Reference Guide. Union Institute & University

Organizing image files in Lightroom part 2

Movie Maker 2 Beginning

How to Format a Spreadsheet. provided by the OpenOffice.org Documentation Project

Using Google Docs in the classroom: Simple as ABC

PowerPoint 2007 Basics Website:

Mastering Volume Photography Training

Word 2010: The Basics Table of Contents THE WORD 2010 WINDOW... 2 SET UP A DOCUMENT... 3 INTRODUCING BACKSTAGE... 3 CREATE A NEW DOCUMENT...

How schedule AccuTRConsole to run every hour

GUITAR THEORY REVOLUTION. Part 1: How To Learn All The Notes On The Guitar Fretboard

Contents Contents Contents Overview Charging your headset Wearing the headset Powering on the headset Connecting your headset for dictation

Basic Formulas in Excel. Why use cell names in formulas instead of actual numbers?

Using Your Polyvision Digital Whiteboard and Walk-and-Talk

VideoPad Video Editor Help v 2.41

Use fireworks and Bonfire night as a stimulus for programming

Unified Communications Using Microsoft Office Live Meeting 2007

HOW TO ORGANIZE PICTURES

Sending s and Texts

CNC Turning Training CNC MILLING / ROUTING TRAINING GUIDE. Page 1

Using Microsoft Word. Working With Objects

Getting Started with CelticPipes

Styles, Tables of Contents, and Tables of Authorities in Microsoft Word 2010

Managing documents, files and folders

How a Teen can use "Budget" to manage their money

Using Microsoft Photostory 3

Upgrading from Windows XP to Windows 7

SCRATCH PROGRAMMING AND NUMERACY IN SENIOR PRIMARY CLASSES

1. How to Set or Change your ipad Password. Contents

Working with the Multi Cam Mode in EDIUS

SiteBuilder 2.1 Manual

This Skill Builder demonstrates how to define and place sketched symbols in drawings.

SMART BOARD USER GUIDE FOR PC TABLE OF CONTENTS I. BEFORE YOU USE THE SMART BOARD. What is it?

Microsoft Office 2010: Introductory Q&As PowerPoint Chapter 1

How to make a line graph using Excel 2007

HOWTO annotate documents in Microsoft Word

Windows Live Movie Maker

Using Microsoft Photostory 3

WebPlus X7. Quick Start Guide. Simple steps for designing your site and getting it online.

Transcription:

Scratch 1 Rock Band All Code Clubs must be registered. Registered clubs appear on the map at codeclub.org.uk - if your club is not on the map then visit jumpto.cc/18cplpy to find out what to do. Introduction In this project you'll learn how to code your own musical instruments! Activity Checklist Test your Project Save your Project Follow these INSTRUCTIONS one by one Click on the green flag to TEST your code Make sure to SAVE your work now 1

Step 1: Coding a Drum First, let's make a drum that makes a sound when it's hit. Activity Checklist 1. Start a new Scratch project, and delete the cat sprite so that your project is empty. You can find the online Scratch editor at jumpto.cc/scratch-new. 2. Add a drum sprite to your blank project, as well as adding a suitable backdrop image to the stage. If you're not sure how to do this, the previous project ("Lost in Space") will help you! 3. Let's program the drum to play a sound when it's clicked. Make sure the drum sprite is selected and add this code: 2

4. Click the drum to try out your new instrument! 5. You can also change how the drum looks when it's clicked, by creating a new costume. Click the 'Costumes' tab, and you'll see the drum image. 6. Right-click on the costume and click 'duplicate' to create 2 copies of the costume. 7. Click on the new costume (called 'drum2') and then select the line tool and draw lines to make it look like the drum is making 3

a sound. 8. The names of the costumes aren't very helpful at the moment. Rename the 2 costumes to 'not hit' and 'hit' by typing the new name of each costume into the text box. 9. Now that you have 2 different costumes for your drum, you can choose which costume is displayed! Add this code to your drum: 4

The code block for changing the costume is in the Looks section. 10. When clicked, your drum should now change costumes, to look like it's been hit, and then change back again. Save your project 5

Challenge: Improving your drum Can you change the sound that the drum makes when it's clicked? Can you also get the drum to make a sound when the spacebar is pressed? You'll need to use this event block: You can copy your existing code by right-clicking on it and clicking 'duplicate'. Save your project 6

Step 2: Coding a Singer Let's add a singer to our band! Activity Checklist 1. Add another 2 sprites to your stage; a singer and a microphone. 2. Before you can make your singer sing, you need to add a sound to your sprite. Make sure that you have selected your singer, then click the 'Sounds' tab, and click 'Choose sound from library': 3. If you click 'Vocals' on the left hand side, you will then be able 7

to choose a suitable sound to add to your sprite. 4. Now that the sound has been added, you can add this code to your singer: 5. Click on your singer, to make sure that she sings when clicked. Save your project You can also change the costume of your singer, to make it look like she is singing. Just like with the drum, right-click on the costume to duplicate it, so that you have 2. Rename the 2 costumes to 'not singing' and 'singing'. 8

Add some lines near your singer's mouth. Your singer should look something like this: Now add code to change your singer's costume when clicked: Click on your singer, to test that your new code works. Save your project 9

Step 3: Coding a cymbal So far all of your instruments have used images from the Scratch library. Why not draw a sprite of your own! Activity Checklist 1. To draw your own cymbal sprite, click on the 'Paint new sprite' icon. 2. As you can see, you now have a blank sprite called 'Sprite1'. Draw your cymbal in 'costume1', using a yellow ellipse and some black lines. You should also rename this costume 'not hit', just like with your other sprites. 10

3. Duplicate your cymbal sprite to create a second costume, and remember to name it 'hit'. 4. To make your cymbal look like it's been hit, you can rotate it. To do this, click the 'Select' tool and drag to highlight the cymbal. You can then click and drag the circular 'rotate' handle to rotate the cymbal. 11

Your cymbal costumes should look something like this: 5. Your cymbal is probably a bit too big. Click the 'Shrink' icon, and you should notice that the mouse cursor changes. Click on your cymbal a few times to shrink it. You can also move your cymbal to a better place on the stage. 12

6. Next, you should change the name of the sprite, as 'sprite1' isn't a very helpful name! Click the icon for your cymbal sprite, and then click on the blue i (information) icon in the top-left. You can then change the sprite name to something more useful, like 'Cymbal'! 7. Now that you have your graphics made, you can add in a sound to the cymbal sprite. Click 'Choose sound from library', and then click 'Percussion' and choose the 'cymbal crash' sound. 13

8. Add this code to the cymbal, so that it makes a sound and changes costume when clicked: 9. Test out your cymbal, to see if it works! Save your project 14

Step 4: Backing music You can even add some music for your band to play along to! Activity Checklist 1. Click on the stage, and then click the 'Sounds' tab and then 'Choose sound from library' to add some music to the stage. The music is in the 'Music Loops' section. 2. Add this code to your stage, remembering to select the sound that you chose: 3. This code repeatedly plays the music that you have chosen. Click the flag to test it out! 4. You can even add this code to your stage, to allow you to mute and unmute the background music using the 'm' and 'u' keys: 15

Save your project Challenge: Make your own band Use what you've learnt in this project to make your own band! You can create any instruments you like, but look at the available sounds and instruments to get some ideas. Your instruments don't have to be sensible though. For example, you could make a piano made out of muffins! Can you make your own song, or even get together with your friends to make a band? Save your project 16