Need slide show script ASAP

Hello again

Here is a situation

I have 4 images (image_1, image_2, image_3,and image_4,) I want for the them to scroll like a slide show from left to right one after another but extremely slow, and to place another layer to show text and stuff, what would be the script for this slide show, help please

Thank you very much.

Andy

Well, do you have to use actionscript? If you do then here is one simple option. Make a movie clip (MC) and place all the images in the movie clip. Call the MC “pictures” or whatever. Now go back to your main stage. Now right click on your MC pictures and put this in…


onClipEvent (enterFrame) {
this._x -= 3;
}

I have a question - now when that has finished sliding across, is there a way to make it come back to the begining and start over again?

Will it be seamless as long as there are enough pictures?

Thanks that worked really good but how do you make it slide 4 images one after another and with alpha effecs.

Any help would be appreciated

Sureshot >> same technique as demonstrated here: http://www.kirupa.com/developer/mx/infinite.asp

Audrius >> what kind of effect?

Alpha fading effects
sort of like this i.e one image scrolls and fades out and the second one appears and so on

ilyaslamasse>> Thank you!

:slight_smile: this is exaclty what I was looking for but I didnt want it to be a menu - just for pictures and stuff so I didnt even think to loook there. Again, thanks very much!

Sureshot >> you’re welcome :slight_smile:
Audrius >> This has been explained several times on the forum. You could also run a search with the keyWord fade, I’m sure you’ll get a lot of interesting tutes.

pom <:}