home *** CD-ROM | disk | FTP | other *** search
- global myFile
-
- on enterFrame
- if objectp(myFile) then
- myFile = 0
- end if
- myFile = new(xtra("fileio"))
- openFile(myFile, "c:\agreed.txt", 1)
- myVariable = readFile(myFile)
- if readFile(myFile) = VOID then
- go(2)
- else
- go(1, "qtpc")
- closeFile(myFile)
- end if
- myFile = 0
- end
-