erm ya, doing that now. just finish transfering the urls. thought you went offline, your bulb* went off 
Oh i did not put the traces but in the testMe(), I put it loadContainers since there is a loadContainers below the function
oh ya, just a qns to ask too, the "symbol"& panel do i need to change their names? some of the vars I`m sure i need to changes their names for example "image" to "images"
Oh, i just post half of it, if you want the whole chunk i edit the post( restore your commments back to their former glory
) Befor you starting cursing me(which i hope you won`t
) I personally suspect its the problem with symbols* & thumbs* & panel* )since they were in the orginal script
Code:
var rawdata:Array = []; // stores all the raw data
var images:Array = []; // stores symbol image file names
var urls:Array = []; // stores associated website URLs
var lv:LoadVars = new LoadVars();
lv.onData = function(src:String) {
rawdata = src.split("\r\n"); // Seperates the raw data based on line breaks. Output image.jpg|http://www.website.co,
for(i=0;i<rawdata.length-1;i++) { // Loops through all of the raw data
info = rawdata[i].split("|"); // Seperates each array element by a delimiter (vertical bar). Resulting array: info[rawdata[i]] = (info[0], info[1]) or (image, uri)
images.push(info[0]); // "Pushes" the 0th value (the image path) to the images array for later access
urls.push(info[1]); // "Pushes" the 1st value to the urls array for later access
}
loadContainers();
}
this.createEmptyMovieClip("panel", this.getNextHighestDepth());
var count:Number = 0;
function loadContainers() {
for(i=0;i<images.length-1;i++) {
var symbol:MovieClip = panel.createEmptyMovieClip("symbol"+i, i);
var thumb:MovieClip = panel["symbol"+i].createEmptyMovieClip("thumb", i);
var image:MovieClip = panel["symbol"+i]["thumb"].createEmptyMovieClip("image",30+ i);
panel["symbol"+i]._x = 150*i //gap between the images
panel["symbol"+i]._y = Stage.height/4; // height of the marquee
var mcl:MovieClipLoader = new MovieClipLoader();
var mclL:Object = new Object();
mclL.onLoadComplete = function() {
count++;
if(count ==images.length-1) {
beginScroll();
}
}
mcl.loadClip("rawdata/"+images[i], panel["symbol" +i]["thumb"]["images"]);
mcl.addListener(mclL);
panel["symbol"+i].id = i;
panel["symbol"+i].onRelease = function() {
getURL(urls[this.id]);
}
}
}
Bookmarks