hey, i am loading text dynamically into boxes, in flash it works fine when i export it, and upload the txt file and the swf file in the same directory, my error msg comes up, here is my as
var myLV:LoadVars = new LoadVars();
myLV.load("./shortstackbox.txt");
myLV.onLoad = function(success) {
if (success){
shortstack_txt.htmlText=myLV.shortstackvar;
}
else{
shortstack_txt.text=“Text failed to load due to an error. Please contact the webmaster.”;
}
}
stop();
Any help would be awsome, thanks, shannon