home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #3 / K-CD-3-2002.ISO / K-CS.DCR / 00418.ls < prev    next >
Encoding:
Text File  |  2002-01-14  |  348 b   |  15 lines

  1. on new me
  2.   set Temp to EMPTY
  3.   set myfile to new(xtra("fileio"))
  4.   openFile(myfile, "C:\Komputer.tmp", 1)
  5.   if status(myfile) = 0 then
  6.     put readFile(myfile) into field "HopDestination"
  7.     closeFile(myfile)
  8.     set myfile to 0
  9.     set Temp to the text of member "HopDestination"
  10.     if Temp <> EMPTY then
  11.       go(Temp)
  12.     end if
  13.   end if
  14. end
  15.