home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': '',
- 'Copyright': '',
- 'Description': '',
- 'Host': 'Paint Shop Pro',
- 'Host Version': '8.00'
- }
-
- def Do(Environment):
- App.Do( Environment, 'Rotate', {
- 'RotAngleDegrees': 45.000000,
- 'Direction': App.Constants.Boolean.false,
- 'Rotate All Layers': App.Constants.Boolean.false,
- 'FillMaterial': {
- 'Color': (255,255,0),
- 'Pattern': None,
- 'Gradient': None,
- 'Texture': None
- },
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Interactive,
- }
- })
-
-