Código python:
Ver originaldef request_ms(self, color, sentido):#El metodo request_ms se encarga de realizar la animacion del envio de un paquete de peticion de arbol.
x = 0
if self == link1_3 and sentido == 'a' :
sentido = 'd'
elif self == link1_3 and sentido == 'd' :
sentido = 'a'
if self == link2_4 and sentido == 'a' :
sentido = 'd'
elif self == link2_4 and sentido == 'd' :
sentido = 'a'
while x < 11 :
root.update_idletasks()
time.sleep(self.peso/50.99)
if sentido == 'd' :
canvas.itemconfigure(self.datalink[10 - x], width = 3, fill= color, stipple = "gray50")
elif sentido == 'a' :
canvas.itemconfigure(self.datalink[x], width = 3, fill= color, stipple = "gray50")
x = x+1
root.update_idletasks()
self.reinicio()
Por ejemplo me gustaria para esta animacion simple pero por lo que e visto al hacer un evento de teclado este no se realiza hasta que acaba toda la animacion no cuando pulso la tecla.
Un saludo y gracias por tu ayuda