Im building a dynamic movie clip scoller in flash the swf at the moment returns all the images from the db using an asp page and does display them side by side! … great…
im using a method of loading that im not 100% sure about as i need to make the whole thing scroll left to right style…and right to left…
the code for this loading is …
–
myLoader = new MovieClipLoader();
function loadPics() {
myY = 0;
myX = 0;
for (i=0; i<=_root.image_array_length-1; i++) {
_root.attachMovie(“image”, “image”+i, i);
this[“image”+i]._x = myX;
etc… now when im making this scroll im confused as to what to target to make scroll - the ‘image’ movieclip is in the libary and uses linkage identifer of ‘image’ for the script… and also seems to sit on the highest layer/depth each time… anyone any ideas? thanks in advance…