home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 3
/
AACD03.BIN
/
AACD
/
Sound
/
Eagleplayer2
/
Rexx
/
EP_CloseMainWindow.dopus
< prev
next >
Wrap
Text File
|
1998-01-09
|
613b
|
28 lines
/* Eagleplayeransteuerung über Diropus
(c) 1993-97 DEFECT Softworks
closes Eagleplayer`s main window
------------------------------------------------------------------------
Call as:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[ARexx] Eagleplayer2:Rexx/EP_CloseMainWindow.dopus {p}
Flags: none required
*/
parse arg opusport
options results
if (pos('rexx_EP',SHOW('Ports')) = 0) then
do
address value opusport
toptext 'No Eagleplayer found'
exit
end
address 'rexx_EP'
CX_POPUP NO
AHA=result
address value opusport
toptext 'Eagleplayer: '||AHA
exit