Posts by Olho • 29 points
4 posts
-
0
votes1
answer55
viewsQ: How to assign a function to a kivy button?
I am a beginner in python and I want that whenever a certain button is pressed, run a function. Here is the code: application py. import kivy kivy.require("1.8.0") from kivy.app import App class…
-
0
votes0
answers46
viewsQ: How do I save an audio to a folder with gtts using javascript?
I am writing a Javascript program and need to save an audio file using gtts or any other sound library. My code: var texto = "Preciso ser um arquivo de áudio"; var filepath = "mp3/song.wav";…
javascriptasked Olho 29 -
1
votes2
answers335
viewsQ: How to open a second window in Pyqt5 without closing the main?
I am creating a login interface, and I want when the user presses a button, to open a new window in Pyqt5 but without closing the main window, but the secondary window is not staying open. from…
-
-1
votes1
answer120
viewsQ: How to check if the Tkinter window has been closed Python?
I’m having a problem with the code, my code is bigger than that, this part is just the login and password part, my problem is that the code works if the window is closed by X, has how to check if…