home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / CON-004C.ZIP / CONCORD.ZIP / SCRIPT.ZIP / ANS2ASC.SCR < prev    next >
Encoding:
Text File  |  1996-05-12  |  239 b   |  11 lines

  1. ; Example script to change emulation from ANSI to ASCII
  2. ; and vice versa.
  3. ;
  4. IF (@EMULATION@ = 4)
  5.   WRITE "Now using ANSI emulation.^M;"
  6.   SET @EMULATION@ = 1
  7. ELSE
  8.   WRITE "Now using ASCII emulation.^M;"
  9.   SET @EMULATION@ = 4
  10. END
  11.