home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Icon 8.1 / mem / MPW Helpers / Scripts / SetIconSpeed < prev    next >
Encoding:
Text File  |  1992-05-29  |  302 b   |  12 lines  |  [TEXT/MPS ]

  1. set SetIconSpeed_opt "`getlistitem -m 'Choose Icon window output option:' -d 'More orderly' 'Faster' -c -q`"
  2. if "{SetIconSpeed_opt}" != ""
  3.     if "{SetIconSpeed_opt}" == "Faster"
  4.       set NOLINEFLUSH 1
  5.       export NOLINEFLUSH
  6.     else
  7.       unset NOLINEFLUSH
  8.       unexport NOLINEFLUSH
  9.     end
  10. end
  11. unset SetIconSpeed_opt
  12.