Tkiner display the label after callback function. but i display label in the top.
def records():
lbl = tk.Label(recordWindow, text="recording")
lbl.grid()
Audio1()
btn = tk.Button(recordWindow, text="click to record",command=records)
btn.grid()
in this Audio1 function call and display the label. I need display the label and call back the function.
I Need to display the "recording" and run the audio1() function. but what happened is after running the audio1() function it display the "recording" label