Hello Eldor
On 28-Jul-02, you wrote: > = > Is there amy way to get MD2 to use AWeb for web links, copy to > clipboaurd and past is close to the old copy and past I got MD to get > away from. I use an old program called Sendbrowser.mdrx, and I have versions for IBrowse, Voyager, and Aweb. It was at http://www.azstarnet.com/~midian/ -- Charles has left the Amiga platform. Here is my Aweb version, just cut everything but the script and plunk it in your rexx drawer in Microdot. It will not work if OpenUrl is running though: /* $VER: sendbrowser.mdrx 2.1 (21 APR 98) ** by Charles Patterson <[EMAIL PROTECTED]> ** http://www.azstarnet.com/~midian/ ** With thanks to: Markus Lamers <[EMAIL PROTECTED]> ** Peter Schulz ** and Andrew Ricketts <[EMAIL PROTECTED]> ** ** Description: Send URL of URL-Grabber in Microdot-II to your currently ** running web browser or run the browser then send it. ** ** Requirements: Microdot-II (=A9 1997 Oliver Wagner) and any of the ** following web browsers: ** VoyagerNG (=A9 1997 Oliver Wagner) ** Voyager (=A9 1996 Oliver Wagner) ** AWeb (=A9 1995-1997 Yvon Rozijn) ** IBrowse (=A9 1995-1997 Omnipresence Intl.) ** AMosaic (=A9 1995 Omnipresence Intl.) ** ** Instructions: Place this file in your Microdot-II directory then set ** the path and ARexx port to your default browser. ** ** --------- Path to your Browser : ----------*/ BROWSER =3D "HD0:AWeb3/AWeb-II" /* --------- ARexx port of Browser : ---------*/ APORT =3D "IBROWSE" /*--------------------------------------------*/ PARSE ARG url OPTIONS RESULTS Display: SELECT WHEN SHOW("P", "IBROWSE") THEN Browser("IBROWSE","GOTOURL "url) WHEN SHOW("P", "AWEB.1") THEN Browser("AWEB.1","OPEN "url) WHEN SHOW("P", "AMOSAIC.1") THEN Browser("AMOSAIC.1","JUMP URL "url) WHEN SHOW("P", "MINDWALKER") THEN Browser("MINDWALKER","OPENURL "url) WHEN SHOW("P", "VOYAGER") THEN Browser("VOYAGER","OpenURL "url) OTHERWISE NoBrowser() END Browser: PARSE ARG port,loadpage ADDRESS(port) loadpage EXIT NoBrowser: ADDRESS COMMAND 'Run ' BROWSER ADDRESS COMMAND "WaitForPort" APORT Display() EXIT And no, do not change "IBROWSE" to "AWEB", it works just as shown. I don't know why. Watch for wrapped lines above, and put it in an editor and straighten that out before using. BTW, OpenURL uses Aweb as its default browser, or if modified, can be changed back to that, so you could just install it, and use it instead. I just have all my scripts set up like I want them, and don't use it. Regards -- = Mike Leavitt [EMAIL PROTECTED] __________________________________________________________________ MicroDot-II Mailing List - http://www.vapor.com/md2/ MicroDot-II FAQ: http://faq.vapor.com/md2/ Listserver Help: mailto:[EMAIL PROTECTED]?Subject=HELP Unsubscribe....: mailto:[EMAIL PROTECTED]?Subject=UNSUBSCRIBE
