Android-Music
The capx in this post may help.
Otherwise here's the math to scale any object around a point (centerx, centery). Just do it for all the objects you want to scale around that point.
set x to (self.x-centerx)*scale + centerx
set y to (self.y-centery)*scale + centery
Set width to self.width*scale
Set height to self.height*scale