home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World of A1200
/
World_Of_A1200.iso
/
programs
/
text
/
tpp
/
rexx
/
dviprintlog.tpl
< prev
next >
Wrap
Text File
|
1995-02-27
|
692b
|
41 lines
/* DVIPrint Logfile - Macro */
/* Kick 2.0 only */
options results
binary='C:Type'
hailstring='DVIPrint Logfile'
address 'TextPlus'
/* get screen name */
'GetScreenName'
pub_name = result
/* left edge */
'GetWindowLeftEdge'
le = result
/* top edge */
'GetWindowTopEdge'
te = result
/* width */
'GetWindowWidth'
wi = result
/* height */
'GetWindowHeight'
he = result
output = '>"CON:'||le||'/'||te||'/'||wi||'/'||he||'/'||hailstring||'/AUTO/WAIT/ALT/INACTIVE/SCREEN'||pub_name||'"'
fullname = 'T:DVIPrint.log'
'RequestString' hailstring'\\'fullname
/* okay? */
if result ~= "" then do
address command binary output fullname
end
else
'Display' 'DVIPrint Logfile --- Aborted'