home *** CD-ROM | disk | FTP | other *** search
- ; RAWEMUL.SCR : Example script to change the text file type
- ; (see RAWEMUL.CTL).
- ;
- ; TEXTFILETYPE can be used to enable eg. RIP support in Concord.
- ;
- ; By default, not called from anywhere; you should add
- ; a Run Script menutype yourself to some menu to use
- ; this script file.
- ;
- ; The default setting is .ANS with convertion to ASCII/ANSI/AVATAR
- ; and can be turned on with command :
- ; SET @TEXTFILETYPE@ = 0
-
- var %TYPE% = NUMBER
- set %TYPE% = 0
- write "^C14,0;Do you want to use :^M;"
- write "^C11,0;0 ^C7,0;-^C11,0; Automatic^M;"
- write "^C11,0;1 ^C7,0;-^C11,0; ASCII^M;"
- write "^C11,0;2 ^C7,0;-^C11,0; ANSI^M;"
- write "^C11,0;3 ^C7,0;-^C11,0; AVATAR^M;"
- write "^C11,0;4 ^C7,0;-^C11,0; RIP^M;"
- write "^C14,0;Make your selection (~10,~21,~32,~43,~54) [0] : ^W;^M;"
- if (@ANSWER@ > 0)
- set %TYPE% = (@ANSWER@-1)
- end
- set @TEXTFILETYPE@ = %TYPE%
- quit
-