Il 23/02/07, Tollardo, Mauro <[EMAIL PROTECTED]> ha scritto:

Salve a  tutti,

ciao Mauro,
ti scongiuro di non inviare mail html a ML pubbliche, sono 'URIBILI'

sto cercando di  imparare le basi di Tkinter e devo dire che è molto  
divertente.
Vorrei sottoporre un  problemino, sicuramente banale per chi usa Tkinter: come 
si può cambiare un  testo presente in un frame. Ad esempio:
from Tkinter import  *
root=Tk()
frame=Frame(root)
frame.pack()
Label(frame,text="Pippo").pack()


a = Tkinter.Label(text='pippo')
a['text']
'pippo'
a['text'] = 'paperino'
a['text']
'paperino'


ciao
--
Gian Mario Tagliaretti
http://www.parafernalia.org/pygtk/
_______________________________________________
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python

Rispondere a