home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 26
/
amigaformatcd26.iso
/
+system+
/
tools
/
sound
/
eagleplayer2.00
/
rexx
/
ep_pubscreenarg.dopus
< prev
next >
Wrap
Text File
|
1998-02-26
|
782b
|
35 lines
/* Eagleplayer control using Diropus4
(c) 1993-1997 DEFECT Softworks
makes Eagleplayer open on a different public screen
------------------------------------------------------------------------
Call as:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
[ARexx] Eagleplayer2:Rexx/EP_PubScreenARG.dopus {p} --arg--
where '--arg--' is the name of the public screen to open on
Flags: none required
Example: Eagleplayer2:Rexx/EP_PubScreenARG.dopus {p} DOPUS.1
*/
options results
parse arg opusport aha
if (pos('rexx_EP',SHOW('Ports')) = 0) then
do
address value opusport
toptext 'No Eagleplayer found !'
exit
end
address 'rexx_EP'
pubscreen aha
aha=result
address value opusport
toptext 'Eagleplayer: '||aha
exit