home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / amiga / gfx / dockbrus.lha / Icons / MyPrefs < prev    next >
Encoding:
Text File  |  1992-10-01  |  1001 b   |  33 lines

  1. if exists SYS:prefs
  2.   if exists SYS:prefs/screenmode
  3.     SYS:prefs/screenmode myscreen use
  4.     wait 2 secs
  5.   else
  6.     echo " Hey!  I can not find your ScreenMode "
  7.     echo " Preference Editor!                   "
  8.     echo "                                      "
  9.   endif
  10.   if exists SYS:prefs/palette
  11.     SYS:prefs/palette mypalette use
  12.   else
  13.     echo " Hey!  I can not find your Palette    "
  14.     echo " Preference Editor!                   "
  15.     echo "                                      "
  16.   endif
  17.   if exists SYS:prefs/pointer
  18.     SYS:prefs/pointer mypointer use
  19.   else
  20.     echo " Hey!  I can not find your Pointer    "
  21.     echo " Preference Editor!                   "
  22.     echo "                                      "
  23.   endif
  24. else
  25.   echo " Sorry, but I am unable to find " 
  26.   echo " your Preference Editors.       "
  27.   echo "                                "
  28.   echo " I am looking for the Preference"
  29.   echo " Editors in your system's Prefs "
  30.   echo " directory, which is not found. "
  31. endif  
  32.  
  33.