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, 'NewFile', {
- 'Width': 200,
- 'Height': 200,
- 'ColorDepth': App.Constants.Colordepth.SixteenMillionColor,
- 'DimensionUnits': App.Constants.DimensionType.Pixels,
- 'ResolutionUnits': App.Constants.ResolutionUnits.PixelsPerIn,
- 'Resolution': 200,
- 'FillMaterial': {
- 'Color': (0,0,255),
- 'Pattern': None,
- 'Gradient': None,
- 'Texture': None,
- 'Identity': r'Material'
- },
- 'Transparent': App.Constants.Boolean.true,
- 'VectorBackground': App.Constants.Boolean.true,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Silent,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- })
-
-
-