home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 45
/
Amiga_Dream_45.iso
/
Amiga
/
Magazine
/
Dossier-LaTeX
/
tex_scripts.lha
/
viewfile.edge
< prev
next >
Wrap
Text File
|
1995-10-11
|
577b
|
27 lines
/*View Other*/
options results
/* Get the filename */
requestfile title DVI_FILE pattern '#?.dvi' getdir
if ~(rc==0) then exit
file=result
/* View the file */
address command 'TeX:bin/dvi' file
/* If anything went wrong, load the .log file. */
log='.log'
if ~(rc==0) then do
changewindow leftedge 0 topedge 13 width 668 height 220
requestnotify title ERROR string 'View Failed. See log.'
new
address value result
activatewindow port result
open files log
window front
changewindow leftedge 0 topedge 233 width 668 height 230
end
else address command delete log