You are on page 1of 8

From Requests on Post-It notes

Drawing an Oval

Drawing a Star

Drawing shapes with lots of sides using angles

Drawing octagons with random colours

Drawing a shape and adding sound

Drawing a shape and add music

Draw a shape and add narration

More about adding sound


http://smallbasic.com/smallbasic.com/wiki/speech_music_extension.ashx

Using the text window


1. TextWindow.Write("Enter your Name: ") 2. name = TextWindow.Read() 3. TextWindow.WriteLine("Hello " + name)

1. 2. 3. 4.

TextWindow.Write("Enter your Name: ") name = TextWindow.Read() TextWindow.Write("Hello " + name + ". ") TextWindow.WriteLine("How are you doing " + name + "?")

You might also like