home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 3 StrawWall preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_StrawWall():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Width': 3,
- 'Length': 20,
- 'Angle': 240,
- 'Transparency': 98,
- 'Density': 25,
- 'Color': (53, 53, 53),
- 'Blur': 50,
- }
-
- def Do(Environment):
- App.Do(Environment, 'StrawWall', Preset_StrawWall())
-