From: Kevin A. <ka...@us...> - 2004-09-16 04:42:40
|
Update of /cvsroot/pythoncard/PythonCard/samples/testNotebook In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1660/samples/testNotebook Modified Files: testNotebook.py Log Message: added stringSelection attribute to match list, choice, etc. Index: testNotebook.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/testNotebook/testNotebook.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** testNotebook.py 14 Sep 2004 21:07:49 -0000 1.4 --- testNotebook.py 16 Sep 2004 04:42:30 -0000 1.5 *************** *** 59,62 **** --- 59,65 ---- print "last page text: %s\n" % \ self.components.notebook.getPageText(self.components.notebook.getPageCount() - 1) + + print "stringSelection:", self.components.notebook.stringSelection + self.components.notebook.stringSelection = 'minimal' def on_notebook_pageChanging(self, event): |