http://arduino.cc/en/Tutorial/Tone3

Dear ALL. i am working on the simple keyboard on page http://arduino.cc/en/Tutorial/Tone3.
The code says

sketch_jun06a:27: error: 'NOTE_A4' was not declared in this scope
sketch_jun06a:27: error: 'NOTE_B4' was not declared in this scope
sketch_jun06a:27: error: 'NOTE_C3' was not declared in this scope

I am a total beginner. Does anyone know how to solve this. I just copied the tutorial...

Thanks Dinie

The sketch uses an extra file, pitches.h. This file contains all the pitch values for typical notes. For example, NOTE_C4 is middle C. NOTE_FS4 is F sharp, and so forth. This note table was originally written by Brett Hagman, on whose work the tone() command was based. You may find it useful for whenever you want to make musical notes.

To make this file, click on the "new Tab" button in the upper right hand corner of the window. It looks like this:

Did you do this?