home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_Pattern_Factory_Defau < prev    next >
Encoding:
Text File  |  2003-04-22  |  827 b   |  32 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 Pattern effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_Pattern():
  14.     return {
  15.         'NumRows': 3,
  16.         'VerticalOffset': 0,
  17.         'Scale': 0,
  18.         'Angle': 90,
  19.         'FillColor': (0, 0, 0),
  20.         'HorizontalOffset': 0,
  21.         'GeneralSettings': {
  22.             'AutoActionMode': 0,
  23.             'ExecutionMode': 0
  24.             },
  25.         'NumColumns': 3,
  26.         'VerticalShift': 0,
  27.         'HorizontalShift': 0
  28.         }
  29.  
  30. def Do(Environment):
  31.     App.Do( Environment, 'Pattern', Preset_Pattern())
  32.