Image scrolling slide bar(from right to left)

Hi everybody
I am a new member to this forum
I need your help
I want to develop a system in which all the images present in a particular directory gets scrolled from right to left automatically.
Please see www.corbis.com for reference
Please help me I need this for my college site.
My email is chanani_s@yahoo.com.

Thanks in anticipation
Sandeep

mmm, i don’t know if this help… it’s a kirupa tutorial for endless menu. just have to switch to images i guess

Hi catseyes4u
Thanks for the help
But my problem still remains unsolved…
I don;t know how to do it for images.

example with images

Hi…
This is fine…
But what I need is that whatever images i put in the folder
should move from right to left.
Sandeep

well, i don’t know exactly how to do it but you may try those tutorials: http://www.kirupa.com/developer/mx/photogallery.htm for fotogallery and http://www.kirupa.com/developer/mx/loadingrandombackground.htm for loading random images

change the code on your scrolling mc in this:
[AS]onClipEvent (load) {
speed = 2;
}
onClipEvent (enterFrame) {
_x -= speed;
if (_x<-300) {
_x = 0;
}
}[/AS]

scotty:}