home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / SoftFocus_dialog.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  858 b   |  28 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, 'SoftFocus', {
  14.             'NoiseAmount': 50, 
  15.             'EdgeImportance': 50, 
  16.             'HaloSize': 50, 
  17.             'HaloVisibility': 50, 
  18.             'IncludeScatteredLight': App.Constants.Boolean.true, 
  19.             'Softness': 50, 
  20.             'GeneralSettings': {
  21.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  22.                 'PreviewVisible': App.Constants.Boolean.true, 
  23.                 'AutoProof': App.Constants.Boolean.false, 
  24.                 'AutoActionMode': App.Constants.AutoActionMode.Match
  25.                 }
  26.             }) 
  27.  
  28.