Problem with rotate function.
I got a problem with the rotate function. When I rotate an (text) object (point text but same behavior with area text) on the GUI of Illustrator, the resize bounds around (see screenshot) is rotated as well so that you can resize it as used to. If I rotate the same object by JavaScript, the resize bounds are NOT rotated along with. How can I get the same effect as with the GUI-way by JavaScript as thats the result I need? And where is my thinking error. Here is the code I used for the rotation:
var docRef = app.activeDocument;
var sRef = docRef.selection[0];
sRef.rotate(20, true, true, true, true, Transformation.TOPLEFT);

