home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Rotate_dialog.PspScript < prev    next >
Encoding:
Text File  |  2003-04-22  |  789 b   |  28 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, 'Rotate', {
  14.             'RotAngleDegrees': 45.000000, 
  15.             'Direction': App.Constants.Boolean.false, 
  16.             'Rotate All Layers': App.Constants.Boolean.false, 
  17.             'FillMaterial': {
  18.                 'Color': (255,255,0), 
  19.                 'Pattern': None, 
  20.                 'Gradient': None, 
  21.                 'Texture': None
  22.                 }, 
  23.             'GeneralSettings': {
  24.                 'ExecutionMode': App.Constants.ExecutionMode.Interactive, 
  25.                 }
  26.             }) 
  27.  
  28.