*Originally posted by j0se *
**frame1
1> loadVariables(“myFile.txt”, this);
frame2
2> if (this.update){
3> update=update; //the output txtbox shows ‘update’ var
4> stop();
5> } else{
6> update = “no data”
7> }
8> stop();
**
Hiya.
First off, this is what is happening, line by line, with the code above:
Frame1
Line1: If this code is attached to the textbox, then the contents of myFile are loaded into it.
Frame2
Line2: This basically says, “If the local variable ‘update’ that is contained in this textbox instance (I assume again this code is attached to the textbox instance) contains ANYTHING AT ALL, then…” If you haven’t initialized the variable “update”, then it may have some garbage in it, which means this if statement will be true.
Line3: This line does nothing. It’s like saying 5 = 5. Flash already knows that a variable equals itself.
Line4: This line stops the timeline from playing, but not the code from continuing. This is redundant since you have a stop at line 8 anyway.
Line6: This sets ‘update’ to “no data”, which I assume is what appears in the textbox.
Now, that was all just to help you follow along what was going on, since you said you didn’t know what the this.update was all about. You said the box shows “no data” for a bit, then the myFile text pops up in it, right? Well, it seems what’s happening is the first frame starts loading up myFile (this takes a while, but the animation continues regardless). In frame 2, while myFile is still loading, this.update is seen to be empty (thus the IF statement is false, so the ELSE block is executed). The ELSE block puts “no data” into the textbox, and the animation stops. Meanwhile, myFile is STILL LOADING. LoadVariables (and loadVars too) is an asynchronous action, which, to my understanding, means the code will continue to be executed, without waiting for loadVariables to finish executing (in other words, the variables are loaded while other stuff goes on).
Basically, this means that all you have to do is replace your code above with the following (which will accomplish the exact same thing):
Frame 1:
update = "no data";
loadVariables("myFile.txt", this);
stop();
That’s it. Obviously this doesn’t do what you wanted to originally accomplish, which was, IIRC, to check whether an external file exists. The only way I know of doing that is by using the loadVars object, new to Flash MX. If you have MX, use the getBytesTotal() method of the loadVars object. getBytesTotal() returns “undefined” if it doesn’t/can’t load the target file. So you could check if the total bytes of the file is defined or not, and if it is, you know the file exists.
Sorry about the long-winded explanation, but I’m at work and I’m bored. 
Hope that helps!
-Al