from tkinter import *
import sfml
window = Tk()
window.minsize( 640, 480 )
def sonido():
file = sfml.Music.from_file('poco.ogg')
file.play()
test = Button ( window, text = 'Sound test', command=sonido )
test.place ( x = 10, y = 60)
window.mainloop()
使用 Windows 7,Python 3.3,sfml 1.3.0 库,如果我把它从函数中播放出来的文件。 我究竟做错了什么 ?谢谢。