home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / HSLSatMinus60.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  1.2 KB  |  34 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, 'ColorAdjustHSL', {
  14.             'HSL': {
  15.                 'Colorize': App.Constants.Boolean.false, 
  16.                 'Master': (0,-60,0), 
  17.                 'MasterColorize': (0,0,0), 
  18.                 'Red': (0,0,0,315,345,15,45), 
  19.                 'Green': (0,0,0,75,105,135,165), 
  20.                 'Blue': (0,0,0,195,225,255,285), 
  21.                 'Cyan': (0,0,0,135,165,195,225), 
  22.                 'Magenta': (0,0,0,255,285,315,345), 
  23.                 'Yellow': (0,0,0,15,45,75,105)
  24.                 }, 
  25.             'GeneralSettings': {
  26.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  27.                 'DialogPlacement': {
  28.                     'ShowMaximized': App.Constants.Boolean.false, 
  29.                     'Rect': ((404.000,151.000),344.000,535.000)
  30.                     }, 
  31.                 'PreviewVisible': App.Constants.Boolean.true, 
  32.                 'AutoProof': App.Constants.Boolean.false
  33.                 }
  34.             })