Transition

can anyone please tell me how I can create the transition effect where the lines adapt to the size of the content of the photographs.

here’s an example of the transitions I’m talking about:

http://www.kirkimages.com

seb

this.resize = function(width, height){
this.onEnterFrame = function(){
this.window._width += (width-this.window._width).2;
this.window._height += (height- this.window._height )
.2;
}
}

this changes(easing) the size of the window. You need to trigger
it from your button:

yourButton.mainTimeline = this;
yourButton.onRelease = function(){
this.mainTimeline.resize(sectionWidth, sectionHeight);
}

I answered this question a few days ago. Lemme see if I can find it …

Here it is: http://www.kirupaforum.com/forums/showthread.php?s=&threadid=27802

Thanks guys!