|    
			
				07/04/2009, 16:37
			
			
			  | 
  |   |  |  |  |  Fecha de Ingreso: noviembre-2008 Ubicación: villarrica chile 
						Mensajes: 26
					 Antigüedad: 16 años, 11 meses Puntos: 1 |  | 
  |  Respuesta: Como poner botones en otra ventana con Tk.  
  si quieres poner botones con Tk aqui te dejo  un ejemplo 
 from Tkinter import *
 def holamundo():
 holamundolbl = Label(root, text="Hola ")
 holamundolbl.grid(row=2, column=1)
 root = Tk()
 holamundo = Button(root, text="Activar super poder ",command=holamundo, width=20)
 holamundo.grid(row=1, column=1)
 root.mainloop()
     |