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, 'AddBorders', {
- 'Bottom': 25,
- 'Left': 350,
- 'Right': 25,
- 'Symmetric': App.Constants.Boolean.false,
- 'Top': 25,
- 'Color': (255,255,255),
- 'DimUnits': App.Constants.UnitsOfMeasure.Pixels,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Interactive,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- })
-
-