well, i don't have mx2004, so i can't open you file but this should work, if its finding your file:
Code:
myData = new LoadVars();
myData.load("data.txt");
myData.onLoad = function(success){
if(success){
trace(this.statement1);
trace(this.statement2);
}
}
there may be a path problem to your movieclips... if you've got the wrong path to your movie clips, it won't be able to change the visibility.
another problem, and its the likely culprit, is that your variables are being brought into flash as Strings. so myMC._visible="false" won't do what you want (which is myMC._visible=false). if you change true/false to 1/0, it should work, flash will evalute the string "1" to true, and the string "0" to false.