I was wondering something…
Lets say I have 3 folders: mtm0, mtm1, and mtm2 in each folder there are 2 files: stats.txt & headshot.jpg.
I have a flash movie containing: an empty movie clip that loads headshot.jpg into it and a dynamic text box that loads stats.txt into it. There are also 2 buttons: forward and backward. How can I…using arrays probably…have those buttons go from the current folder (say mtm1) forward to mtm2 and use that folders headshot.jpg and stats.txt?
something like:
[AS]
on (release){
folder = folder+1
this.picHolder.loadMovie(folder+“headshot.jpg”);
}
or something to that affect…so that you click forward, or backward and it goes to the next or previous folder and reloads the text box and movie clip with the files? am i making sense?