I'm sure I'm missing something basic here, but for some reason I'm not able to
access a text file on another domain when my movie is viewed with Flash Player
6. Viewing with Flash Player 7 works fine (I have a crossdomain.xml file on
the server that's hosting the text file).

I've tried publishing for v6 and v7 with the same result.

This code works fine in both Players if the file is local or on the same
domain. With the file on a different domain, inString is undefined when viewed
with Player 6. (The file contains a single line of text.)

Any advice would be much appreciated.

Thanks,
Jeff



var lv = new LoadVars();

lv.onData = function(inString){
txtAmount = inString;
}

lv.load("http://domain.com/filename.txt");