Re: [Tkinter-discuss] tkSnack record for specific period of time

2010-01-19 Thread skizm
Cool this works, I was working on the threading idea but this is much simpler. Earlier i had tried the after function but I had it tied to the frame object instead of the root object which made it not work for some reason. Thanks a lot for the help! Michael Lange wrote: > > Hi, > > On Mon, 18

Re: [Tkinter-discuss] tkSnack record for specific period of time

2010-01-19 Thread Michael Lange
Hi, On Mon, 18 Jan 2010 15:57:06 -0800 (PST) skizm wrote: > > I am currently trying to write a code snippet that will record for a > set period of time and I have tried a number of methods to do this > yet none have worked, the first one I tried is listed below. > > from Tkinter import * > imp

Re: [Tkinter-discuss] tkSnack record for specific period of time

2010-01-19 Thread Michael O'Donnell
Hi Shawn, Maybe try doing the recording in a separate thread: http://www.python.org/doc/current/library/thread.html Mick On Tue, Jan 19, 2010 at 12:57 AM, skizm wrote: > > I am currently trying to write a code snippet that will record for a set > period of time and I have tried a number of met

[Tkinter-discuss] tkSnack record for specific period of time

2010-01-19 Thread skizm
I am currently trying to write a code snippet that will record for a set period of time and I have tried a number of methods to do this yet none have worked, the first one I tried is listed below. from Tkinter import * import time root = Tk() import tkSnack tkSnack.initializeSnack(root) c = tkSn

Re: [Tkinter-discuss] tkSnack

2008-06-18 Thread Russell E. Owen
In article <[EMAIL PROTECTED]>, Chris Maddison <[EMAIL PROTECTED]> wrote: > I got it to work. You were right there was something wrong with the > architecture. As it turns out ActiveTcl 8.5.2 has an outdated PPC > snack2.2. On top of that the snack2.2.10 installer script puts the > files in

Re: [Tkinter-discuss] tkSnack

2008-06-16 Thread Chris Maddison
I got it to work. You were right there was something wrong with the architecture. As it turns out ActiveTcl 8.5.2 has an outdated PPC snack2.2. On top of that the snack2.2.10 installer script puts the files in the wrong place. It took a little shuffling. Perhaps I will have to warn ActiveSt

Re: [Tkinter-discuss] tkSnack

2008-06-16 Thread Kevin Walzer
Chris Maddison wrote: Greetings, I'm new to the list. I'm a second year comp sci student putting together a small simple media library in Python for first year computer science students. I'd like to do sound, and as far as I can tell tkSnack is one of the simplest ways of doing that. Yet, wit

[Tkinter-discuss] tkSnack

2008-06-16 Thread Chris Maddison
Greetings, I'm new to the list. I'm a second year comp sci student putting together a small simple media library in Python for first year computer science students. I'd like to do sound, and as far as I can tell tkSnack is one of the simplest ways of doing that. Yet, with the lastest vers