home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / ChooseOverlay.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  1.3 KB  |  42 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, 'LayerProperties', {
  14.             'General': {
  15.                 'Opacity': None, 
  16.                 'Name': None, 
  17.                 'IsVisible': None, 
  18.                 'IsTransparencyLocked': None, 
  19.                 'LinkSet': None, 
  20.                 'UseHighlight': None, 
  21.                 'PaletteHighlightColor': None, 
  22.                 'GroupLink': None, 
  23.                 'BlendMode': App.Constants.BlendMode.Overlay
  24.                 }, 
  25.             'BlendRanges': None, 
  26.             'Path': (0,0,[],App.Constants.Boolean.false), 
  27.             'BrightnessContrast': None, 
  28.             'ChannelMixer': None, 
  29.             'ColorBalance': None, 
  30.             'CurveParams': None, 
  31.             'HSL': None, 
  32.             'Threshold': None, 
  33.             'Levels': None, 
  34.             'Posterize': None, 
  35.             'Overlay': None, 
  36.             'GeneralSettings': {
  37.                 'ExecutionMode': App.Constants.ExecutionMode.Silent, 
  38.                 'AutoActionMode': App.Constants.AutoActionMode.Default
  39.                 }
  40.             })
  41.  
  42.