:tie: Hi, this script is not attaching the array name to the beginning of .swf. Any ideas why?
[AS]
folio_arr = [“aa”, “bb”, “cc”, “dd”, “ee”, “ff”];
// --------------------------------------------------------------------------------------
for (i=0; i<folio_arr.length; i++) {
this[“folio”+(i+1)].onRelease = function(){
loadMovie(folio_arr*+".swf", “folioClip”);
folioClip.preload(627, 201, 170, 16, 0, 0xDCDCDC, 0x000000);
}
};
[/AS]