Python Forum
Tkinter Generate/Delete Shapes with Keyboard Events
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Tkinter Generate/Delete Shapes with Keyboard Events
#4
Use a lambda statement, after needs to a function
import tkinter as tk


def enter_pressed(event):
    print("Key pressed: ENTER")
    box = c.create_rectangle(50, 50, 100, 100, fill="red")
    root.after(3000, lambda: c.delete(box))
 
def space_pressed(event):
    print("Key pressed: SPACE")
 
def main():
    root.bind("<Return>", enter_pressed)
    root.bind("<space>", space_pressed)
 
    root.mainloop()

if __name__ == '__main__':
    root = tk.Tk()
    root.title("My app")
    root.geometry('500x500')
    c = tk.Canvas(root, height=500, width=500, bg="blue")
    c.pack()
    
    main()
Reply


Messages In This Thread
RE: Tkinter Generate/Delete Shapes with Keyboard Events - by Larz60+ - Aug-16-2019, 12:23 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] Tkinter delete values in Entries, when I'm changing the Frame robertoCarlos 11 5,929 Jul-29-2020, 07:13 PM
Last Post: deanhystad
  [Tkinter] Tkinter delete combobox content and not the list LagratteCchouette 4 8,536 Dec-29-2019, 11:04 AM
Last Post: LagratteCchouette
  [PyQt] Wonky Touch Events hessej 2 2,340 Nov-07-2019, 07:52 PM
Last Post: kozaizsvemira
  How to delete text from a tkinter Text widget? Tang 1 28,715 May-20-2018, 09:26 PM
Last Post: Larz60+
  [PyQt] touch events is not generating shridhara 0 3,407 Apr-23-2018, 11:39 AM
Last Post: shridhara
  [Tkinter] problem with button events Lubik_ 4 9,834 Dec-01-2017, 08:47 PM
Last Post: Windspar
  How can I draw en color shapes on python? MBlastSt 2 4,579 Oct-09-2017, 01:42 PM
Last Post: ichabod801
  PyQt5 events alekssandrap 1 7,633 Jan-31-2017, 03:53 PM
Last Post: Larz60+
  PyQt4 Touch events alekssandrap 2 7,198 Jan-28-2017, 01:05 PM
Last Post: alekssandrap

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020