home *** CD-ROM | disk | FTP | other *** search
/ PC Extra 07 & 08 / pca1507.iso / Software / psp8 / Data1.cab / Preset_Feedback_feedback_5s. < prev    next >
Encoding:
Text File  |  2003-04-22  |  522 b   |  24 lines

  1. from JascApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': '',
  6.         'Copyright': '',
  7.         'Description': '',
  8.         'Host': 'Paint Shop Pro',
  9.         'Host Version': '8.00'
  10.         }
  11.  
  12. def Preset_Feedback():
  13.     return {
  14.         'HorizontalOffset': 5, 
  15.         'VerticalOffset': 5, 
  16.         'Intensity': 5, 
  17.         'Ellipse': App.Constants.Boolean.true, 
  18.         'Opacity': 5
  19.         }
  20.  
  21. def Do(Environment):
  22.     App.Do( Environment, 'Feedback',         Preset_Feedback())
  23.  
  24.