Paint Pot
Paint pot is like digital doodle but better. Its where you can draw but with colors and you can color an image like a coloring book. The things you will need to make this app is buttons for each color you want to be in this app(you will want to put this in a horizontal scroll arrangement), a canvas, and image thats like a coloring sheet, and a button so you can wipe. You need to make the canvas image the coloring page. Now lets get coding! Lets start with the color buttons. First you should rename your buttons so the are what color they are. EX: Button_red, Button_orange, Button_yellow. Then you go into the block section and pull out when button_(color).click do and put in set DrawingCanvas.Paintcolor to and click colors on the side and pick the color that matches what your button says.Then pull out call texttospeech1.speak message and pull out the quotation marks and type in the color it is so it will say that and you would do that for all the other colors. Then to get it to draw pull out when drawingcanvas.dragged do and put in the call drawingcanvas.drawcircle and it should say centerX, centerY, radius, and fill with a true. Get currentX and put that in the centerX, put get currentY and put that in centerY, you would put Slider1.Thumbposition. Then duplicate it and remover the orange and blue blocks (not the true) and put in get prevX in centerX, get prevY and put it in centerY, and put slider1.ThumbPosition for radius. Then pull out when drawing canvas.touched do and put in call drawingcanvas.drawcircle and put in get x in centerX, getY in centerY, slider1. thumbposition in radius, and keep true in fill. And if you want to do a notfier so people can know where there closing the screen or wiping you can look at the photo of the blocks below.