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, 'ColorAdjustBrightnessContrast', {
- 'BrightnessContrast': {
- 'Brightness': 35,
- 'Contrast': 20
- },
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Interactive,
- 'PreviewVisible': App.Constants.Boolean.true,
- 'AutoProof': App.Constants.Boolean.false,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- })
-
-