>on exitFrame
>
>   if netDone(mynetID) = FALSE then
>     go to the frame
>   else
>     alert "Downloaded"
>   end if
>
>   theText = getPref("fileCont.txt")
>   member("fileContent").text = theText
>end

You're trying to read the text whether the file is downloaded or not. Try:

else
   alert "Downloaded"
    theText = getPref("fileCont.txt")
    member("fileContent").text = theText
end if

Also, depending on where this is in your movie and how fast a connection 
you have, it's possible that the cast that contains member "fileContent" 
hasn't finished downloading. You might want to loop earlier in the movie on 
the mediaReady of your last cast member.

Cordially,
Kerry Thompson
Sr. Interface Engineer
Learning Network


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to