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

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': 'Jasc Software Inc.',
  7.         'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
  8.         'Description': 'Factory default preset for Topography effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Topography():
  14.     return {
  15.         'Color': (255, 255, 255),
  16.         'Width': 20,
  17.         'GeneralSettings': {
  18.             'AutoActionMode': 0,
  19.             'ExecutionMode': 0
  20.             },
  21.         'Angle': 45,
  22.         'Density': 8
  23.         }
  24.  
  25. def Do(Environment):
  26.     App.Do( Environment, 'Topography', Preset_Topography())
  27.