On the 18-Okt-99 23:36:21, John E Lord <[EMAIL PROTECTED]>,
wrote in  "[voyager] Re: RealAudio plugin"

> Hi Rolf

> , On 18-Oct-99, you wrote:


>> Do you have AHI installed and is AUDIO: mounted? Do you have
>> rxsocket.library in libs? Is PIPE: mounted?

> AHI - of course :)
> AUDIO: always mounted, 
> rxsocket.library --- Success :)) That's what was missing. I am listening
> to the Streamed audio as I type this.

>>>> Hope this helps

> It certainly did, :)))

> One more thing, how do I stop the StreamRA requester opening on the Wb
> screen when Voyager is running on it's own custom screen?

You actually edit the rexx script itself by adding in your own public screen
in the script like that...

Here's the editable part in StreamRA.rx
--
/* StreamRA.rx by Sigbj�rn (CISC) Skj�ret
** $VER: StreamRA.rx v2.3 (28.04.99)
**
** Tries to stream a RealAudio file via a file containing URL(s) (like a .ram file)...
*/
options results
options failat 21
signal on halt
signal on break_c
parse arg args


/*** Edit these options ***/

raprog          = 'C:RAPlay'            /* Which decoder to run */
rxprog          = 'SYS:RexxC/RX'        /* The ARexx interpreter */

bfsize          = '8192'                        /* Initial playback buffer (will 
revert to "pbsize" variable after first read) */
pbsize          = '1024'                        /* Playback buffer (keep this low 
unless you have a very fast connection to the stream) */

savepath        = ''                            /* Leave this empty unless you wish to 
save file in this dir while streaming */
comment         = '1'                           /* Save URL as comment to the file 
saved? (1 for yes, 0 for no) */

reqtools        = '1'                           /* Display ReqTools requester? (1 for 
yes, 0 for no) */
pubscreen       = '#FrontMost#'           /* The public screen you want the requester 
on */

/*** <-end-> ***/

As you can see you can edit the rexx script to suit your needs, just edit
the 'pubscreen' string so it fits yourublic screen. Maybe you have it named
"Voyager" on MUI's own PSI or you can add the string '�Frontmost�' so it'll
always open on your frontmost screen.

Don't use my example as it's my own external program that is called
'#FrontMost#'.

--
       Kimme Utsi, http://www.kimme.nu/
"To get back my youth I would do anything in the world,
 except take exercise, get up early, or be respectable."
                         -Oscar Wilde (1854-1900)

____________________________________________________________
Voyager Mailing List - Info & Archive: http://www.vapor.com/
For Listserver Help: <[EMAIL PROTECTED]>, "HELP"
To Unsubscribe: <[EMAIL PROTECTED]>, "UNSUBSCRIBE"

Reply via email to