> Before I start moving them into dark corners of the canvas - > is there a way to hide/show Tkinter canvas items without > having to maintain their original position externally? For tagged items on the canvas: mycanvas.itemconfigure("highlight", state='hidden') mycanvas.itemconfigure("highlight", state='normal') Cheerio, Marc.