home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / GausBlur4.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  591 b   |  22 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, 'GaussianBlur', {
  14.             'Radius': 4.000000, 
  15.             'GeneralSettings': {
  16.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  17.                 'PreviewVisible': App.Constants.Boolean.true, 
  18.                 'AutoProof': App.Constants.Boolean.false
  19.                 }
  20.             }) 
  21.  
  22.