Who can help me to do this ? Please!

I gotta a problem.I want to do this effect.There is severval things on the scene.Each thing can be clicked.When I click one thing,this object will become bigger and on the center of the scene.When this object becomes biger ,the other things are also become biger.And the distance between each objects are not changed.

This is something like things in the room.If I want to see something clear.I click it ,then the whole room becomes biger.And the thing I clicked will finally on the center of scene.
I wish I speak it clear.Does anyone can help me!!!

onmousevent press _xscale/_yscale 100 ?

Just put all your buttons inside a container clip, and make the container clip grow on press. Ie put something like this on the timeline:

container.but1.onPress = function () {
this._parent.onEnterFrame = function () {
this._xscale = this._yscale += 5 ;
}
}

Thank you for replying.But all I want to do is not only want everything to become biger.I also want the focus of the scene turn to on the object I clicked.I think that is tricky part of this problem.

just edit the script to enlarge everything then change the coords to focus on the clicked item

But how to do it?

use _xscale/_yscale to enlarge by an ammount

and

_x/_y to set coords