Python Forum
TkInter Binding Buttons
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
TkInter Binding Buttons
#1
Hi! I wanted to get if a key(Enter/F1/BTN1) was pressed, but it is not working as i thought. :(
So the desired outcome:


import tkinter as tk

def pressed_enter():
    print('You pressed Enter')

def pressed_F1():
    print('You pressed F1')

def pressed_btn1():
    print('Mouse BTN1 was pressed')

root = tk.Tk()
root.geometry('200x250')

root.bind("<Return>", pressed_enter())
root.bind("<KeyPress-F1>", pressed_F1())
root.bind("<Button-1>", pressed_btn1())

root.mainloop()

(Apr-04-2020, 05:10 PM)ifigazsi Wrote: So the desired outcome:

- Not to run at start
- Run as many times, as a button was pressed.
Reply


Messages In This Thread
TkInter Binding Buttons - by ifigazsi - Apr-04-2020, 05:10 PM
RE: TkInter Binding Buttons - by deanhystad - Apr-04-2020, 07:20 PM
RE: TkInter Binding Buttons - by ifigazsi - Apr-05-2020, 10:47 AM
RE: TkInter Binding Buttons - by ifigazsi - Apr-05-2020, 07:03 PM
RE: TkInter Binding Buttons - by deanhystad - Apr-06-2020, 04:36 AM
RE: TkInter Binding Buttons - by ifigazsi - Apr-06-2020, 08:30 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Key Binding scope angus1964 1 1,225 Jun-30-2022, 08:17 PM
Last Post: deanhystad
  tkinter toggle buttons not working Nu2Python 26 7,055 Jan-23-2022, 06:49 PM
Last Post: Nu2Python
  kivy binding issue hammer 8 3,043 Nov-07-2021, 11:34 PM
Last Post: hammer
  [Tkinter] binding versus disable DPaul 6 6,811 May-05-2021, 05:17 PM
Last Post: DPaul
  [Tkinter] Binding Entry box to <Button-3> created in for loop iconit 5 4,999 Apr-22-2020, 05:47 AM
Last Post: iconit
  Making text clickable with binding DT2000 10 5,171 Apr-02-2020, 10:11 PM
Last Post: DT2000
  Issue on tkinter with buttons Reldaing 1 2,460 Jan-07-2020, 08:21 AM
Last Post: berckut72
  Need tkinter help with clicking buttons pythonprogrammer 2 2,485 Jan-03-2020, 04:43 AM
Last Post: joe_momma
  [Tkinter] Setting Binding to Entry created with a loop? p_hobbs 1 2,092 Nov-25-2019, 10:29 AM
Last Post: Larz60+
  Tkinter Buttons action d3fi 1 2,019 Nov-20-2019, 09:16 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

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