I’ve figured it out. Thank You
http://www.kirupa.com/developer/mx2004/external_array.htm
I am trying to use this to load an array. As it turns out it will only be a single variable. It doesn’t seem to be working for me.
Here is my actionscript…
files = new Array();
lv = new LoadVars();
lv.onLoad = function() {
fl = this.transIDNum;
files = fl.split(",");
c = files.length-1;
strMyTrans.text = file[0];
}
lv.load(“http://www4.yontrack.com/hospice/getdetails4.asp?theQual=3”);
Is it not workign properly because there is only one item in the string?
Thanks
Mike