元の質問:
押すとscript.pyファイルを実行するTkinterボタンがあります。
#-*- coding: utf-8 -*-
from Tkinter import *
master = Tk()
def callback():
execfile("script.py")
b = Button(master, text="OK", command=callback)
b.pack()
mainloop()
script.py は、アニメーション用のウィンドウを開く 2D アニメーションです。
"""
A simple example of an animated plot
"""
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
fig, ax = plt.subplots()
x = np.arange(0, 2*np.pi, 0.01) # x-array
line, = ax.plot(x, np.sin(x))
def animate(i):
line.set_ydata(np.sin(x+i/10.0)) # update the data
return line,
#Init only required for blitting to give a clean slate.
def init():
line.set_ydata(np.ma.array(x, mask=True))
return line,
ani = animation.FuncAnimation(fig, animate, np.arange(1,200),init_func=init,interval=25, blit=True)
plt.show()
上記の Tkinter コードを実行し、ボタンを押してアニメーションを呼び出すと、アニメーションは最初のフレームのみを表示します。つまり、アニメーションは再生されません。しかし、コマンド ラインから script.py を実行すると、アニメーションが正しく再生されます。問題は、Tkinter コードから実行したときにアニメーションを再生する方法です。