Hello, 
im trying to make a proggy... and have two questions:

1) i need to call every second function 'a', without using SIGARM,
becouse i need to use it on windows...

from threading import Timer
def a():
        print 'tick'
        t=Timer(1.0,a)
        t.start()

t=Timer(1.0,a)
t.start()

while 1:
        continue

thaks not a good idea, isnit?  whats a better way?



1) ive make the program on unix with glade-2.6, gtk-2.4.2 and
py23gtk-2.2, but when i try to load the glade file on windows, i get
several messages like "WARNING: <widget> libglade", the version im using
on windows are:
GTK-Runtime-Environment-2.2.4-3.exe
pygtk-2.2.0-1.win32-py2.3.exe

the problem is with the versoin right?.. where could i find a newer
versoin of this libs for windows?



thank you in advance,


-- 

------------------------
Phillip Neumann
[EMAIL PROTECTED]

_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to