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