would like to scale each object of the active selection to the bounding box of the activeselection.
Sub ScaleToBoundingBox1() Dim s As shapeDim sr As New ShapeRangeDim x As Double, y As Double, w As Double, h As Double
Set sr = ActiveSelectionRangex = sr.BoundingBox.xy = sr.BoundingBox.yw = sr.BoundingBox.widthh = sr.BoundingBox.height
For Each s In sr s.SetSize w, hNext s End Subi tried this upto... not working at all