josiah7 at hotmail.com (Josiah) writes: > Is there a better way? Why does the "lift()" function not work with > "self.master.lift()"? Because self has no attribute master. I suggest doing self.master = master inside __init__. Regards, Martin