home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Browser_dialog.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  878 b   |  31 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Do(Environment):
  13.     App.Do( Environment, 'Browse', {
  14.             'Folder': '', 
  15.             'GeneralSettings': {
  16.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  17.                 'AutoActionMode': App.Constants.AutoActionMode.Match
  18.                 }
  19.             })
  20.  
  21.  
  22.     App.Do( Environment, 'SelectDocument', {
  23.             'SelectedImage': 0, 
  24.             'Strict': App.Constants.Boolean.false, 
  25.             'GeneralSettings': {
  26.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  27.                 'AutoActionMode': App.Constants.AutoActionMode.Match
  28.                 }
  29.             })
  30.  
  31.