Hi,
We are still using WYSE60 to connect to a Unix server (running Solaris 10). We are using Telnet Pro 5.1.19.
I am trying to understand how to configure the color of the blinking cursor, and nothing I have tried seems to control the color of the cursor. The only thing that seems to change it is the background color attribute, which automatically sets a contrasting color (see below).
I have been using the color information in this thread:
http://yabb.jriver.com/ice/index.php/topic,689.0.htmlI assumed the attributes I needed were these:
ESC[=CR Set blink char foreground color
ESC[=CS Set blink char fackground color
But they have no affect. I have also tried the underline codes, reverse video codes, foreground, background, etc, but the cursor color only seems affected by background color:
Here is the test program I wrote to keep it simple:
#!/bin/sh
echo "\033[=14F"
echo "\033[=1G"
tput clear
The first line is fine, the text color is always yellow. But when I change the value for the G, I seem to get some type of complimentary color for the blinking cursor based on the RGB values of the background color. So color 1 for example (blue) is coded as 0,0,128, so the cursor ends up as 255, 255, 128, which is yellow.
The real issue here is one of our programmers wants to use a grey background (color eight), but can't see the cursor. The reason is it's color code is 128, 128, 128 so the cursor is set to 128, 128, 128 too. Is there an attribute that controls this value so we can set it ourselves? Maybe it's one of the codes listed but I'm just not making the connection.
Thanks,
Allison Andrews
Epson Portland Inc