Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP
Posting-Version: version B 2.10.1 6/24/83; site isrnix.UUCP
Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxb!mhuxn!mhuxm!mhuxj!houxm!ihnp4!inuxc!iuvax!isrnix!mr
From: mr@isrnix.UUCP (michael regoli)
Newsgroups: net.misc
Subject: Codes for Lear Siegler adm5
Message-ID: <385@isrnix.UUCP>
Date: Sun, 10-Feb-85 12:13:37 EST
Article-I.D.: isrnix.385
Posted: Sun Feb 10 12:13:37 1985
Date-Received: Tue, 12-Feb-85 06:08:32 EST
Organization: isr @ iu - bloomington, in
Lines: 35


Question:  What code is required to completely turn the screen into
           reverse video?

	   For example:  echo -n ^[G

	        Turns the adm5's cursor line into reverse video.

	   On Televideo 925's - the code to turn the *entire* screen
	        into reverse video is:

			echo -n ^[b

		To turn the screen into "standard" video:

			echo -n ^[d

	   Therefore, on the TV's, a shell script:

		>	while true
		>	do
		>		echo -n ^[b
		>		echo -n ^[d
		>	done

           will make the screen flash widly.

I want this for the adm5!

	(* NOTE:  For obvious reasons, I have shown the escape (^[)
		as '^' + '[' so to make them visible to all.)