This is actionscript and it's non trivial.
1) Create an array of movieclips.
2) When one clip is clicked on, inside a loop you need to use an easing
equation (search for robert penner easing equations) to smoothly slide
it open. 'Easing' refers to the way something smoothly accellerates, or
decelerates coming to a smooth stop.
3) While you slide one open, the one's to the left or right need to be
simultaneoulsly closed. So, each time through the loop one clip opens a
little and one closes a little at the same speed, until the right size
is achieved.
I say loop but you would probably need to use the onenterframe callback
function.
Sorry if this sounds complicated, but there isn't an easier way of
saying it. As I said, it's non trivial though not heavily non trivial.
You might think you can do this using the timeline. You could probably
do it like that, but the user couldn't roll onto the next one until the
previous one had finished opening... or it would look silly and wrong.
[quoted text, click to view] cjcd wrote:
> I'm trying to accomplish an effect that is like this: five or six photos one
> next tothe other, when I roll over one, it expands and the others contract and
> so on with each one, the perfect example of what I want is located at:
>
http://www.thinknoodles.com and click "the space", you'll see there exactly
> what I'm talking about. Is this actionScript, or a lot of layers? I'm totally
> lost and I would appreciate the help. Thank you in advance.
>