Hi,
I am trying to set up a photogallery with a series of scrolling thumbnails that when clicked load a main jpeg image. Ive got the buttons scrolling ok already. Ideally i dont want to use xml and however much i try, i seem to be a little AS retarded so i am having trouble borrowing from the tutorials. I am happy to code each button individually and want them to load an external jpeg. This would be easy on its own but obviously i would like to have a transition between the images e.g one fades out and another fades in or ideally one bleaches out and another bleaches in (over exposure effect). If it was a simple next/previous button system then again it would be easy as i could animate it on the timeline but the fact that the user can select any thumbnail causes me problems as i guess i need to code it using lots of IF statements.
At the moment im this far:
on (release) {
_root.container_mc.createEmptyMovieClip(“large_mc”,1);
_root.container_mc.large_mc.loadMovie(“016.jpg”);
}
Anyone got any ideas???