This is a read-only mirror of pymolwiki.org
Difference between revisions of "Category talk:Plugins Tutorial"
Jump to navigation
Jump to search
JasonJPilot (talk | contribs) |
Philaltist (talk | contribs) m |
||
Line 3: | Line 3: | ||
! | ! | ||
− | To avoid an error if the pdbCode returns "None" e.g. by pressing the | + | To avoid an error if the pdbCode returns "None" e.g. by pressing the cancel button in dialog popup, |
use this changed part of program | use this changed part of program | ||
! | ! |
Revision as of 16:54, 25 March 2005
Creating the Interface
! To avoid an error if the pdbCode returns "None" e.g. by pressing the cancel button in dialog popup, use this changed part of program !
def fetchPDBDialog(app):
pdbCode = tkSimpleDialog.askstring('PDB Loader Service',
'Please enter a 4-digit pdb code:',
parent=app.root)
if pdbCode: # to avoid an error when pdbCode returns None! (e.g. cancle button!)
remote(pdbCode)