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