Copy link to clipboard
Copied
AI CC 2014 Mac. I can no longer select the rotation center in the Rotate tool on an object that allowed it before. When I click the point with Alt-click I get an annoying error sound and the rotation is around the bounding box center instead. This happens with either Selection Tool or Direct Selection Tool. My entire project depends on being able to choose the rotation center so I can't go on until this is solved. Why would this happen and how can I fix this problem? Note that I successfully rotated the object around the center before I saved and quit AI.
OK, I finally found out what was wrong. I was selecting Transform->Rotate… from the Object menu or the context menu, which only performs the rotation. It doesn't allow origin selection. I first have to select the Rotate Tool from the toolbar or simply 'R' and then Alt-clicking the crosshairs on the desired origin works. It automatically brings up the Rotate dialog which honors the selected origin. Why isn't this important yet unintuitive two-step sequence documented? Why aren't these two steps c
...Copy link to clipboard
Copied
Salut!
Je ne vois pas d'explication à ton problème, je te propose une solution de rechange...
Les objets soumis à rotation doivent êtres groupés.
Si ton dessin est précis, je suppose que oui ?
sélectionne le groupe et lance le script qui suit:
obj1 = activeDocument.selection[0];
for (var i = 1; i <= 6; i++) {
dupObjet = obj1.duplicate(activeDocument,ElementPlacement.PLACEATEND);
dupObjet.rotate(60*i,undefined,undefined,undefined,undefined,Transformation.TOP);
}
De ellere
Copy link to clipboard
Copied
Merci beaucoup Ellere! You can see in my images that the object is selected and it is a group already. I want this to work in the GUI first, then I will write a script (Applescript). I will try your script as well.
Copy link to clipboard
Copied
OK, I tried your script and it worked, but I still want it to work in the GUI.
Copy link to clipboard
Copied
Perhaps other applications are interfering with the modifier keys. This can be some keyboard typing enhancers, or apps like browsers, e-mail, screensharing, whatever.
Try and shutdown everything and launch only Illustrator.
And BTW: when was your last computer reboot?
Copy link to clipboard
Copied
I don't have any apps that could interfere with modifier keys in another app. I plan to reboot as a last resort but I don't think that will work. It was working fine the day before.
Copy link to clipboard
Copied
Rebooting did not help.
Copy link to clipboard
Copied
OK, I finally found out what was wrong. I was selecting Transform->Rotate… from the Object menu or the context menu, which only performs the rotation. It doesn't allow origin selection. I first have to select the Rotate Tool from the toolbar or simply 'R' and then Alt-clicking the crosshairs on the desired origin works. It automatically brings up the Rotate dialog which honors the selected origin. Why isn't this important yet unintuitive two-step sequence documented? Why aren't these two steps combined into one step anyway?
Copy link to clipboard
Copied
The procedure is documented in the documentation: https://helpx.adobe.com/illustrator/using/rotating-reflecting-objects.html
Copy link to clipboard
Copied
Oh, OK. Good. The key is to select the Rotate Tool and not the Transform->Rotate… menu item. Thanks.