home *** CD-ROM | disk | FTP | other *** search
/ The Dream Of Mars / The Dream of Mars.iso / Betanet.dxr / 00019.ls < prev    next >
Encoding:
Text File  |  1997-01-07  |  674 b   |  37 lines

  1. on NavigateComplete url
  2.   put url into field "location"
  3. end
  4.  
  5. on StatusTextChange text
  6.   put text into field "statustext"
  7. end
  8.  
  9. on TitleChange text
  10.   put text into field "title"
  11. end
  12.  
  13. on DownloadBegin
  14.   global iconanimation
  15.   set iconanimation to 1
  16. end
  17.  
  18. on DownloadComplete
  19.   global iconanimation
  20.   set iconanimation to 0
  21. end
  22.  
  23. on ProgressChange Progress, ProgressMax
  24.   if ProgressMax = 0 then
  25.     put " " into field "progressindicator"
  26.     exit
  27.   else
  28.     if Progress = -1 then
  29.       put "Done" into field "progressindicator"
  30.     else
  31.       if ProgressMax = 100 then
  32.         put "Progress= " & Progress & "%" into field "progressindicator"
  33.       end if
  34.     end if
  35.   end if
  36. end
  37.