Paraview 5.10.0-RC1
I am trying to Play an animation.
Tried to add a botton with tkinter to Play it, but the button doesn’t even shows. And the animation went “no response”
top = tkinter.Tk()
B = tkinter.Button(top, text ="Hello", command = scene.Play())
B.pack()
top.mainloop()
Interact()