
-----------------------------------
caseyjennifer23
Sun Dec 30, 2012 12:04 pm

Tic Tac Toe GUI help
-----------------------------------
I really need help working on a GUI Tic Tac Toe game, I don't really understand it and im not asking for someone to do it for me, all i ask is for someone to help guide me. All i have is the board which is.




from tkinter import *

#Create and name the frame

master = Tk()
master.title(" Tic Tac Toe ")

#Create the canvas and board

canvas.create_line(600, 200, 0, 200, width = 3)
canvas.create_line(200, 600, 200, 0, width = 3)
canvas.create_line(400, 600, 400, 0, width = 3)
canvas.create_line(600, 400, 0, 400, width = 3)


master.mainloop()

-----------------------------------
Raknarg
Mon Dec 31, 2012 12:09 am

RE:Tic Tac Toe GUI help
-----------------------------------
Maybe you should be a little more specific on your issue. So is there a problem specifically or you just don't know where to begin kind of thing?

-----------------------------------
caseyjennifer
Mon Jan 07, 2013 1:55 pm

RE:Tic Tac Toe GUI help
-----------------------------------
I really don't know where to begin.
