This is a read-only mirror of pymolwiki.org

Category talk:Plugins Tutorial

From PyMOL Wiki
Revision as of 01:30, 28 March 2014 by Pyadmin (talk | contribs) (4 revisions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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)