home *** CD-ROM | disk | FTP | other *** search
- /**************************************************************************/
- /* Script to give the URL of the URL-Grabber of AmIRC to your currently */
- /* running WWW-Browser. Currently supported are IBrowse, AWeb and AMosaic */
- /* If you miss any features, or find any bugs, please report them to */
- /* the address below. If you make any changes to the script, please */
- /* send a copy of it to me. */
- /* Also it would be nice if you would send me a mail if you use this */
- /* and find it useful :-) */
- /* This script is $Ver: 1.0 */
- /* Author: Markus 'lammy' Lamers; E-Mail: markus.lamers@tu-clausthal.de */
- /* thanx to Peter "Stoebi" Schulz for his help */
- /**************************************************************************/
-
- parse arg args
- options results
-
- if show('P','IBROWSE.1') then do
- address 'IBROWSE.1'
- GOTOURL args
- Exit
- end
-
- if show('P','AWEB.1') then do
- address 'AWEB.1'
- OPEN args
- Exit
- end
-
- if show('P','AMOSAIC.1') then do
- address 'AMOSAIC.1'
- JUMP URL args
- Exit
- end
-
- 'echo You must start your WWW-Browser first ;)'
-
- EXIT 10
-