home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 3 / AACD03.BIN / CDTools / S / ChangeBrowser.awebrx < prev    next >
Text File  |  1999-08-27  |  397b  |  19 lines

  1. /* */
  2.  
  3. options results
  4. parse arg args
  5. parse var args Browser ' ' URL
  6. CDName = left(URL, pos(':',URL))
  7.  
  8. WebSites = CDName'AACD/WebSites/'
  9.  
  10. select
  11.     when Browser = IB then address command 'Run >NIL: 'WebSites'IBrowse/IBrowse file://localhost/'URL 'CONFIGDIR 'WebSites'IBrowse'
  12.     when Browser = V then address command 'Run >NIL: 'WebSites'Voyager/V file:///'URL
  13.     otherwise nop
  14.     end
  15.  
  16. 'quit force'
  17. exit
  18.  
  19.