Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Transmit "Page Down" 1

Status
Not open for further replies.

VLG711

Technical User
May 30, 2001
95
US
I'm trying to write a script that will send a page down to the terminal. In both the editor and the terminal I am using the PCPlus 437 font. When I look at the keyboard editor, the page down is using the cent sign, 6 and a tilde. when I put this into a script and run it only writes the 6 to the screen. If I open the monitor window and press page down I see 9B 36 7E sent. When I run my script I see 9B 36 sent to the terminal. What am I doing wrong?

The script looks like this....

proc main

transmit "XX6~"

endproc

Substitute a cent sign for the XX.


Any help is greatly appreciated.

VLG711
 
can't test it from this site but the keyboard is ^[0y

john poole
bellsouth business
columbia,sc
 
This is due to Procomm using a tilde as a pause character in transmitted strings. The easiest way to workaround this problem is to add the RAW keyword at the end of your transmit command, such as:

transmit "XX6~" RAW

 
RAW did the trick thank you both.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top