Easing Navigation

Hello… could anyone help me here…

I would like to double the size of the graphics in this nice easing navigation.

what do i have to tell the action script to succeed in repositioning the contents?

Stage.scaleMode = "noScale";
this.createEmptyMovieClip("centerPoint", depth++);
centerPoint._x = sectionContainer.section1._x;
centerPoint._y = sectionContainer.section1._y;
var paddingX = sectionContainer._x;
var paddingY = sectionContainer._y;
function easeTo(sectionNumber) {
	var sX = sectionContainer[sectionNumber]._x;
	var sY = sectionContainer[sectionNumber]._y;
	var endX = centerPoint._x-sX+paddingX;
	var endY = centerPoint._y-sY+paddingY;
	sectionContainer.onEnterFrame = function() {
		this._x += (endX-this._x)/2;
		this._y += (endY-this._y)/2;
	};
}
for (var i = 1; i<=4; i++) {
	this["button"+i].goSection = "section"+i;
	this["button"+i].onRelease = function() {
		easeTo(this.goSection);
	};
}

this._height = this._height2
this._width = this._width
2

it don’t work man ! can i post it to you?

Post fla.

[QUOTE=motionman95;2339561]Post fla.[/QUOTE]

I’d like to transform the size of the graphics manually (let’s keep it at double for now), then add some code to make the sliding rooms line up, as the first one (orange) does as a default.

Eventually if possible i’d like the default position to show all 4 rooms (to have the middle of the 4 rooms in the middle of the container) and let whichever button pressed take the viewzer to that particular room… is that possible.?