What's that called? Images that scroll horizontally once you click a link

It’s like I click a link on the nav bar and the images scroll on until the correct one for that page appears, if you catch my drift (I realise this is extremely confusing). For example: http://www.beega.com/five_seasons.html I forgot what it’s called so could anyone please tell me, and if you know of any tutorials, please tell me too. Thanks! :angel:

you mean when the images move up/down?? I think here at kirupa, we have a similar toturial, not sure. But also look in flashKit

yeah. what’s that called, cos if I have the name i can find the tutorial.

I have made an example. Have a look :slight_smile:

It’s called a sliding menu;)
http://www.kirupa.com/developer/flash5/slidingmenu.htm

scotty(-:

ah! :angel: scotty :angel: to the rescue as usual. thanks hga77 too =). Will look into both.

about the tutorial, why does it scroll to one when you play it? Can it just appear at 1 instead of scrolling there? Thanks.

Instead of

onClipEvent (load) {
_root.xnew = _root.mask2._x + (4-1)*100/2 ;
}
onClipEvent (enterFrame) {
_x += (_root.xnew-_x)/10 ;
}

put

onClipEvent (load) {
_root.xnew = _root.mask2._x + (4-1)*100/2 ;
_x =_root.xnew;
}
onClipEvent (enterFrame) {
_x += (_root.xnew-_x)/10 ;
}

??

scotty(-:

All hail scotty! Thanks man.

no problem:thumb: