Hi Octavio, I was wondering if it is possible to rotate a button. With excel VBA I have used a loop with .ThreeD.IncrementRotationX 10 to rotate 10 degrees with each pass through the loop as shown below. Is there an equivalent with javascript? Do I use css and if so can you suggest the correct syntax, regards Dave.
For count = 1 To 9
Worksheets(“Sheet7”).Shapes.Range(Array(“Rectangle 110”)).Select
With Selection.ShapeRange
.ThreeD.IncrementRotationX 10
End With
Worksheets(“Sheet7”).Range(“A1”).Select
Next