home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fonts 1
/
freshfonts1.bin
/
programs
/
amiga
/
tpp
/
rexx
/
updateshowdvi.tpl
< prev
next >
Wrap
Text File
|
1992-06-12
|
318b
|
15 lines
/* Update ShowDVI - Macro */
parse arg filename pagenr .
options results
if filename == "" then exit
/* showdvi already running? */
if show('P', 'showdvi') then do
address 'showdvi' 'tofront'
address 'showdvi' 'loadnew' filename
/* address 'showdvi' 'goto' pagenr */
address 'showdvi' 'activate'
end