From 631b52f5ad6d8120036b1d638c770acbc387e58a Mon Sep 17 00:00:00 2001 From: Array Date: Fri, 30 Apr 2021 14:25:12 -0400 Subject: [PATCH] added skip buttons/need work --- ben10.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ben10.py b/ben10.py index 37eab54..b9627b3 100644 --- a/ben10.py +++ b/ben10.py @@ -5,7 +5,7 @@ from PIL import ImageTk, Image root = Tk() root.title("Omnitrix") -# root.attributes('-fullscreen', True) +root.attributes('-fullscreen', True) root.geometry("640x480") root.configure(bg="#70b607") # root window parameters @@ -16,6 +16,7 @@ img = ImageTk.PhotoImage(Image.open(path)) omnitrix_button = Button(root, bg="#70b607", image=img, activebackground='#70b607', highlightthickness=0, bd=0,command=button_press) # TODO: make sound when pressed + omnitrix_button.image = img omnitrix_button.place(relx=0.5, rely=0.5, anchor=CENTER) # middle button @@ -25,11 +26,17 @@ omnitrix_left = Button(root, text="<", fg="white", bg="black", omnitrix_left.pack(side="left") # changes alien button (left) +skip_left = Button(root, text="<<<", fg="white", bg="black", highlightthickness=0, bd=0, width=4) +skip_left.pack() + omnitrix_right = Button(root, text=">", fg="white", bg="black", command=lambda: count_up(omnitrix_button), highlightthickness=0, bd=0, height=40, width=4) omnitrix_right.pack(side="right") # changes alien button (right) +skip_right = Button(root, text=">>>", fg="white", bg="black", highlightthickness=0, bd=0, width=4) +skip_right.pack() + quit_button = Button(root, text="X", fg="white", bg="black", command=root.destroy, highlightthickness=0, bd=0, width=7) quit_button.pack(side="bottom")