home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Utilities
/
QuickFile
/
ARexx
/
ProgressWin.quickfile
< prev
next >
Wrap
Text File
|
2000-05-26
|
675b
|
26 lines
/*
$VER: ProgressWin.quickfile 1.3 (26 May 2000 15:40:24) By M Andre Z Eckenrode
External function for QuickFile macros.
Returns a full CON: window specification for progress messages during lengthy
macro operations, such as "Record 1 of 30756", etc.
Requires the external function macro 'GetViewWin.quickfile' and the following
arguments:
(<max length of progress line to be displayed>,<progress window title>)
*/
view = 'arexx/getviewwin'()
parse var view . . . . win.cx win.cy fs .
win.w = (arg(1)*fs)+6
win.h = (fs*4)+6
win.x = win.cx-(win.w%2)
win.y = win.cy-(win.h%2)
exit 'con:'win.x'/'win.y'/'win.w'/'win.h'/'arg(2)'/inactive/noprop/noalt/noclose/nosize'