<html><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">Hi Mateusz,<div><span class="Apple-tab-span" style="white-space:pre">        </span>Can you provide a script?  When I type the two lines of code you provided into IDLE ("label_text" instead of "labeltext" of course) I get no errors, neither the first nor the second time.</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>That said, the error in the traceback you provided is indicative to me that you are creating an EntryField from a parent widget that has been destroyed.  When you say "closing the viewer" are you talking about the GUI for your extension?  Perhaps closing it destroys the widgets and you are somehow reusing some of them the second time?</div><div><span class="Apple-tab-span" style="white-space:pre"> </span>Also I would recommend making your dialog inherit from chimera.baseDialog.ModelessDialog.  This will allow it (in 1.6 builds) to be tiled along with other dialogs and to be quickly brought to the front with the 1.6 Rapid Access "Active Dialogs" list.  The "Extension-Specific User Interface" programmer's example (<a href="http://plato.cgl.ucsf.edu/chimera/docs/ProgrammersGuide/Examples/index.html">http://plato.cgl.ucsf.edu/chimera/docs/ProgrammersGuide/Examples/index.html</a>) goes into detail as to how to use a ModelessDialog.</div><div><br></div><div>--Eric</div><div><br></div><div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 16px; "><font face="Helvetica" size="5" style="font: normal normal normal 16px/normal Helvetica; ">                        Eric Pettersen</font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 16px; "><font face="Helvetica" size="5" style="font: normal normal normal 16px/normal Helvetica; ">                        UCSF Computer Graphics Lab</font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 16px; "><font face="Helvetica" size="5" style="font: normal normal normal 16px/normal Helvetica; ">                        <a href="http://www.cgl.ucsf.edu">http://www.cgl.ucsf.edu</a></font></div><div style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; font-size: 16px; "><font face="Helvetica" size="5" style="font: normal normal normal 16px/normal Helvetica; "><br></font></div><div><div>On Aug 28, 2011, at 3:40 PM, Mateusz DobrychÅ‚op wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Dear Chimera Dev Team,<div><br></div><div>I am writing a Chimera extension and I use the Pmw toolkit in my GUI. I had no problems testing it and it worked great until I decided to reinstall my OS (Windows 7). After that, I installed Chimera 1.5.3, imported my extension and didn't face any problems at first. But then, after closing the viewer and running it again, an error occured right after importing the extension's gui:</div> <div><div><br></div><div>Traceback (most recent call last):</div><div>  File "<pyshell#5>", line 1, in <module></div><div>    b=Pmw.EntryField(a,labelpos="w",label_text="asd")</div> <div>  File "C:\Program Files (x86)\Chimera 1.5\bin\lib\site-packages\Pmw\Pmw_1_3\lib\PmwEntryField.py", line 73, in __init__</div><div>    sequences = root.bind_class(tag)</div><div>  File "C:\Program Files (x86)\Chimera 1.5\bin\lib\lib-tk\Tkinter.py", line 1012, in bind_class</div> <div>    return self._bind(('bind', className), sequence, func, add, 0)</div><div>  File "C:\Program Files (x86)\Chimera 1.5\bin\lib\lib-tk\Tkinter.py", line 947, in _bind</div><div>    return self.tk.splitlist(self.tk.call(what))</div> <div>TclError: bad window path name ".94327912.94328912"</div></div><div><br></div><div>I didn't change anything since the last succesful testing of my extension - something happened after closing Chimera for the first time, and I have no idea what it is.</div> <div><br></div><div>After that, I tried reinstalling Chimera, installing older versions - it's always the same story; everything works great on the first run, but after I close the viewer for the first time, I am not ever able to use Pmw anymore.</div> <div><br></div><div>The code that causes this error is simple:</div><div><br></div><div>a=Tkinter.Tk()</div><div>b=Pmw.EntryField(a,labelpos="w",labeltext="c")</div><div><br></div><div>I tried to type the same thing in IDLE and I got the exact same error.</div> <div><br></div><div>Thank you for any help,</div><div><br></div><div>best,</div><div><br></div><div>Mateusz</div> _______________________________________________<br>Chimera-dev mailing list<br><a href="mailto:Chimera-dev@cgl.ucsf.edu">Chimera-dev@cgl.ucsf.edu</a><br>http://www.rbvi.ucsf.edu/mailman/listinfo/chimera-dev<br></blockquote></div><br></div><br><div apple-content-edited="true"><span class="Apple-style-span" style="border-collapse: separate; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; -webkit-text-decorations-in-effect: none; text-indent: 0px; -webkit-text-size-adjust: auto; text-transform: none; orphans: 2; white-space: normal; widows: 2; word-spacing: 0px; "><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><br class="Apple-interchange-newline"></div></span> </div><br></body></html>