home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
telecomm
/
uniterm
/
example3.mac
< prev
next >
Wrap
Text File
|
1993-09-26
|
1KB
|
29 lines
#####################################
# Test Macro for UniTerm V2.0d 002 #
# Copyright 1988 Simon Poole #
# #
#####################################
#
# Sample startup macro
#
####################################################################
# Reassigns two popup fields and a few keys.
# Can be used as a normal macro (start with %macro('example3.mac'))
# or used as the auto-startup-macro
# or can be assigned to startup UniTerm via the desktop
#
####################################################################
# set the second last popup entry to view buffer with EOL display
popup(19,63,'ViewEOL')
# set <Alt><ESC> to the same (awlful stupid thing to do :-))
reassign(01,63)
# set the last popup entry to view buffer without EOL
popup(20,23,'View')
#
# <Help> -> ScrollLock (ugh, but some people like this)
reassign(-11,10)
# <Shift><Help> -> Help (so that we can still get help)
reassign(-12,60)
#####################################