Evjen Halverson wrote:
> I have tried to make a Tkinter program make a
> rectangle move down the window,
> but did not succeed. All it does is
> make a rectangle trail.
> What am I doing wrong?
You are not deleting the old instances of the rectangle.
Look at the delete method of the canvas
On 10/12/07, Evjen Halverson <[EMAIL PROTECTED]> wrote:
> I have tried to make a Tkinter program make a rectangle move down the
> window, but did not succeed. All it does is make a rectangle trail.
>What am I doing wrong?
>
> from Tkinter import*
> root = Tk()
> RectangleColor='orange'
>