Re: Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread cheirasacan
El martes, 7 de mayo de 2013 16:57:59 UTC+2, MRAB escribió: > On 07/05/2013 14:56, cheirasa...@gmail.com wrote: > > > El martes, 7 de mayo de 2013 12:53:25 UTC+2, MRAB escribió: > > >> On 07/05/2013 10:27, cheirasa...@gmail.com wrote: > > >> > from tkinter import * > > >> > import sfml > > >

Re: Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread Chris Angelico
On Wed, May 8, 2013 at 12:57 AM, MRAB wrote: > Also, please read this: > > http://wiki.python.org/moin/GoogleGroupsPython > > because gmail insists on adding extra linebreaks, which can be somewhat > annoying. Accuracy correction: It's nothing to do with gmail, which is what I use (via python-lis

Re: Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread MRAB
On 07/05/2013 14:56, cheirasa...@gmail.com wrote: El martes, 7 de mayo de 2013 12:53:25 UTC+2, MRAB escribió: On 07/05/2013 10:27, cheirasa...@gmail.com wrote: > from tkinter import * > import sfml > > window = Tk() > window.minsize( 640, 480 ) > > def sonido(): > file = sfml.Music.from_fi

Re: Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread cheirasacan
El martes, 7 de mayo de 2013 12:53:25 UTC+2, MRAB escribió: > On 07/05/2013 10:27, cheirasa...@gmail.com wrote: > > > from tkinter import * > > > import sfml > > > > > > > > > window = Tk() > > > window.minsize( 640, 480 ) > > > > > > > > > def sonido(): > > > file = sfml.Music.from

Re: Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread MRAB
On 07/05/2013 10:27, cheirasa...@gmail.com wrote: 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)

Why sfml does not play the file inside a function in this python code?

2013-05-07 Thread cheirasacan
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() Using Windows 7, Python 3.3, s