I have flash 8 Actionscript 2.0.
I am new at this so please be understanding.
What I am trying to do is bring data from php, and I have got that part to work.
Code below
files = new Array();
lv = new LoadVars();
lv.onLoad = function() {
fl = this.id;
trace(“traceinfo below”);
trace(“id = fl”);
trace(fl);
files = fl.split(",");
c = files.length-1;
trace(info);
trace©;
if (c== “0”) {
trace(“I am after the comare of c”);
trace(info);
trace©;
setinfo = c;
trace(“set info”);
trace(setinfo);
}else{
trace("you did not make");
}
};
lv.load(“http://”"/");
How ever the text below I cannot get sepereated out.
info=This is PBC Specializing in lotus Cars info=Charlen Davis info=Lotus L.A. info=Calvert
As you can see info repeats, I need to break the text above down into my var names individually. How can I do that?
Guy