Python Forum
[Tkinter] Have tkinter button toggle on and off a continuously running function
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Have tkinter button toggle on and off a continuously running function
#1
Hello all,

I am trying to write a function for a tkinter button that when toggled begins running a continuously looping function until the same button is toggled again. The code below is where i started. When the button is pressed "looping" gets continuously printed until i close the window. However, I'd rather the function stop being called after the same button is pressed again. Thanks in advance!

from tkinter import *

def close():
    win.destroy()
    
def loopFunction():
        print("looping")
        win.after(1,loopFunction)


win = Tk()

InitButton = Button(win,text='Loop Function',command= loopFunction , bg = "bisque2") #,bg='grey')
InitButton.grid(row=0, column=0, pady = 5)

win.protocol("WM_DELETE_WINDOW", close)
win.mainloop()
Reply
#2
Tkinter buttons don't toggle. How about a checkbox?
Reply
#3
Something like this?
import tkinter as tk
from itertools import cycle


class MainFrame(tk.Frame):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, *kwargs)
        self._timer = False
        self._button1_state = cycle(("disabled", "normal"))
        self._create()
        self._layout()
        self._binds()

    def _create(self):
        self.button1 = tk.Button(self, text="Button1")

    def _layout(self):
        self.button1.pack(padx=5, pady=5)

    def _binds(self):
        self.button1.bind("<ButtonRelease-1>", self._on_button1)

    def _on_button1(self, event):
        if not self._timer:
            self.toggle_button1()
        else:
            self.after_cancel(self._timer)
            self.button1.config(state="normal")
            self._timer = None

    def toggle_button1(self):
        self.button1.config(state=next(self._button1_state))
        self._timer = self.after(100, self.toggle_button1)


def main():
    app = tk.Tk()
    mainframe = MainFrame(app)
    mainframe.pack()
    app.mainloop()


if __name__ == "__main__":
    main()
Reply
#4
(Oct-01-2021, 03:38 AM)deanhystad Wrote: Tkinter buttons don't toggle. How about a checkbox?
Yes, that's the main issue here. I usually pass a variable to keep track of the button state, but not so in this case. After seeing the solution regarding the button, and how much code it takes, I am very interested in how you would do this with a check box.
Reply
#5
Do as you were doing, but only call loopFunction if the checkbox is ckecked
Reply
#6
I miss read the requirements, I thought you wanted a button toggle on and off a continuously Doh
Here is some shorter code hopefully more in line with what you asked for.
Note: if the loop_function does anything that takes too long it will block the GUI event loop see the following
[Tkinter] How to deal with code that blocks the mainloop, freezing the gui
import tkinter as tk


def loop_function():
    print("looping")


class MainFrame(tk.Frame):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, *kwargs)
        self._looping = False
        button1 = tk.Button(self, text="Button1", command=self._on_button1)
        button1.pack(padx=5, pady=5)
        self._timer()

    def _on_button1(self):
        self._looping = not self._looping

    def _timer(self):
        if self._looping:
            loop_function()
        self.after(100, self._timer)


def main():
    app = tk.Tk()
    mainframe = MainFrame(app)
    mainframe.pack()
    app.mainloop()


if __name__ == "__main__":
    main()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] TKinter Remove Button Frame Nu2Python 8 982 Jan-16-2024, 06:44 PM
Last Post: rob101
  tkinter - touchscreen, push the button like click the mouse John64 5 849 Jan-06-2024, 03:45 PM
Last Post: deanhystad
  Using Tkinter inside function not working Ensaimadeta 5 5,045 Dec-03-2023, 01:50 PM
Last Post: deanhystad
  [Tkinter] Help running a loop inside a tkinter frame Konstantin23 3 1,570 Aug-10-2023, 11:41 AM
Last Post: Konstantin23
  Centering and adding a push button to a grid window, TKinter Edward_ 15 4,769 May-25-2023, 07:37 PM
Last Post: deanhystad
  help needed running a simple function in pyqt5 diodes 27 8,397 Jan-24-2023, 12:19 PM
Last Post: GetOnData
  Tkinter won't run my simple function AthertonH 6 3,846 May-03-2022, 02:33 PM
Last Post: deanhystad
  Can't get tkinter button to change color based on changes in data dford 4 3,419 Feb-13-2022, 01:57 PM
Last Post: dford
  tkinter toggle buttons not working Nu2Python 26 6,994 Jan-23-2022, 06:49 PM
Last Post: Nu2Python
  [Tkinter] tkinter best way to pass parameters to a function Pedroski55 3 4,851 Nov-17-2021, 03:21 AM
Last Post: deanhystad

Forum Jump:

User Panel Messages

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