from JascApp import * def ScriptProperties(): return { 'Author': 'Joe Fromm', 'Copyright': 'Copyright (C) 2002-2003, Jasc Software Inc., All Rights Reserved. Permission to create derivate works of this script is granted provided this copyright notice is included', 'Description': 'A predefined script that can be placed on a menu or toolbar. Record one of your own with the same name.', 'Host': 'Paint Shop Pro 8', 'Host Version': '8.00' } def Do(Environment): App.Do(Environment, 'MsgBox', { 'Buttons': App.Constants.MsgButtons.OK, 'Icon': App.Constants.MsgIcons.Info, 'Text': 'BoundScript1 through BoundScript9 are scripts that can be put on a menu or a toolbar ' 'button. You can simply record a script of your choosing, saving it as one of ' 'BoundScript1 through BoundScript9, and then customize it into the user interface.', })