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

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': 'PSP 7 Preset Converter',
  6.         'Copyright': '',
  7.         'Description': 'Custom 1 StrawWall preset',
  8.         'Host': 'Paint Shop Pro 8',
  9.         'Host Version': '8.00',
  10.     }
  11.  
  12. def Preset_StrawWall():
  13.     return {
  14.         'GeneralSettings': {
  15.             'AutoActionMode': 0,
  16.             'ExecutionMode': 0
  17.             },
  18.         'Width': 1,
  19.         'Length': 14,
  20.         'Angle': 233,
  21.         'Transparency': 169,
  22.         'Density': 61,
  23.         'Color': (130, 130, 130),
  24.         'Blur': 28,
  25.         }
  26.  
  27. def Do(Environment):
  28.     App.Do(Environment, 'StrawWall', Preset_StrawWall())
  29.