home *** CD-ROM | disk | FTP | other *** search
/ Shocking The Web CD-ROM / SHOCK_CD.ISO / pc / tutorial / ch08_lgo / tutor.dir / 00136.txt < prev    next >
Encoding:
Text File  |  1996-12-06  |  352 b   |  13 lines

  1. on idle
  2.   if NetDone(gCurrID) = TRUE then    
  3.      if netError(gCurrID) = "OK" then
  4.        if NetTextResult(gCurrID) contains "not found" then 
  5.          alert "File Not Found"
  6.        else 
  7.          set gNextMovieReady = TRUE
  8.        end if
  9.      else if NetError() contains "Error" then 
  10.        alert "Network Error:" && NetError()
  11.      end if
  12.    end if
  13. end