home *** CD-ROM | disk | FTP | other *** search
/ Amiga MA Magazine 1998 #6 / amigamamagazinepolishissue1998.iso / opus / v5 / show_html / showhtml.lha / showhtml / showhtmlIB.dopus5 < prev    next >
Text File  |  1997-07-14  |  914b  |  33 lines

  1. /* Copyright ©1997 Diarmuid Ryan, 12. July 1997
  2. ** Version 1.0          12. July 1997
  3. **
  4. **  ============= IBrowse version  =========================
  5. **
  6. ** This script will send an HTML file from Dopus5 to IBrowse
  7. **
  8. ** Please contact me if you have problems, discover bugs or have suggestions.
  9. ** Send mail to dpryan@iol.ie
  10. **
  11. ** You can also check out my homepages for updates, other scripts and stuff about Radiohead ;)
  12. ** Point your browser at http://www.iol.ie/~dpryan, and follow the software link.
  13. **
  14. ** You need to have Dopus 5 and IBrowse 1.02 or later to run this script
  15. ** Please assign your IBrowse directory to Ibrowse:
  16. */
  17.  
  18. parse arg file
  19. options results
  20.  
  21. /* Checking for IBrowse */
  22.  
  23. if Show("P","IBROWSE") then
  24.      address "IBROWSE"
  25. Else do
  26.      address command "run IBrowse:IBrowse" /* running IBrowse if not present */
  27.   Exit
  28.   End
  29.  
  30. address "IBROWSE"
  31. 'GotoURL file://localhost/'file
  32. SCREENTOFRONT
  33.