Alright Im taking a flash class and Im a little behind on my assignments. Need to get this done and out of my hair as quickly as possible. So any help is appreciated.

I need help figuring out how to complete this task.

Using commands (with different arguments) from the following list, create a series of buttons which draw a simple geometric picture.

1. graphics.lineStyle(2, 0x0000FF);
2. graphics.moveTo(300, 200);
3. graphics.lineTo(400, 200);
4. graphics.curveTo(200, 300, 400, 300);
5. graphics.curveTo(400, 200, 200, 200);
6. graphics.drawCircle(300, 250, 111.8)

I know what happens if you put these in action script and run them but I dont know how to make them controlable with buttons. Dose anyone have some script or some kind of advice I could use. thank you all.