home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'Custom 4 SoftPlastic preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_SoftPlastic():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Color': (144, 144, 144),
- 'Density': 35,
- 'Angle': 70,
- 'Detail': 3,
- 'Blur': 40,
- }
-
- def Do(Environment):
- App.Do(Environment, 'SoftPlastic', Preset_SoftPlastic())
-