home *** CD-ROM | disk | FTP | other *** search
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'PSP 7 Preset Converter',
- 'Copyright': '',
- 'Description': 'RGB Light Lights preset',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_Lights():
- return {
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'Lights': ((1, (255, 9, 9), (0, -60, 8, 100, 28, 45, 60, 180)), (1, (11, 5, 255), (-60, 40, 8, 100, 28, 45, 60, 45)), (1, (23, 255, 5), (60, 40, 8, 100, 28, 45, 60, 315)), (0, (200, 200, 200), (-70, 70, 10, 500, 28, 45, 40, 65)), (0, (200, 200, 70), (0, 0, 10, 500, 28, 45, 0, 200))),
- 'SelButton': 0,
- 'Darkness': 85,
- }
-
- def Do(Environment):
- App.Do(Environment, 'Lights', Preset_Lights())
-