• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Magnetism of the guides to mark the centers of the document?

Explorer ,
Jul 26, 2024 Jul 26, 2024

Copy link to clipboard

Copied

Hello,
By default, in Photoshop, when you move a guide over the entire width, there is a pause that designates the precise center of a document thanks to magnetism. Same on the length.
I would like Illustrator to react in the same way, but I can't find the setting in question. I can find the different magnetisms in the "View" menu but despite my attempts, I can't understand which one corresponds to what I want.

I am using Illustrator 2023 version 27.6.1

Can you help me, please?
Thank you.

TOPICS
Scripting , Tools

Views

370

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 3 Correct answers

Community Expert , Jul 27, 2024 Jul 27, 2024

Besides being very lucky, I did it while dragging from the intersection of the Rulers while holding down the Cmd (Ctrl on Windows) key. This creates a horizontal and vertical guide at the same time. With a single guide, I could not get it to work.

It is faster and easier to drag a rectangle that has the same size as the artboard and drag the guides to the center.

Votes

Translate

Translate
Community Expert , Jul 27, 2024 Jul 27, 2024

You can draw a guide, select it and align it to the center with the align buttons.

Votes

Translate

Translate
Explorer , Jul 27, 2024 Jul 27, 2024

Indeed, by dragging from the intersection of the rules while holding down the "Ctrl" key (under Windows), this creates a horizontal and vertical guide at the same time. All that remains is to move approximately towards the center until a small pink cross and the indication "Center" appear, to finally release the left click. Monika Gause's method also works and these two methods will be very useful to me!

Thank you for your help!

 

@mpchow Sorry, I saw your reply too late..

 

Votes

Translate

Translate
Adobe
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

@AdalineBowman have you tried installing the latest version Illustrator 2024, 28.6

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

If you have smart guides (repères commentés) on and you are very lucky, you should be able to see an indication of the center of the artboard when dragging a guide.

Capture d’écran 2024-07-27 à 09.27.52.png

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

So I'm out of luck lol
The commented markers feature is checked, and I've reset the preferences and settings to default, but nothing happens.

 

27-07-2024 10-30-45.jpg

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

Besides being very lucky, I did it while dragging from the intersection of the Rulers while holding down the Cmd (Ctrl on Windows) key. This creates a horizontal and vertical guide at the same time. With a single guide, I could not get it to work.

It is faster and easier to drag a rectangle that has the same size as the artboard and drag the guides to the center.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

You can draw a guide, select it and align it to the center with the align buttons.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

I am sure a script can create guides at the center of the artboard. I have script that creates a rectangle that has the size of the artboard, combine it in an action with this script that creates guides at the center of a selected object and it does what you want.

https://community.adobe.com/t5/illustrator-discussions/script-for-adding-guides-in-the-centerpoint-o...

Maybe @femkeblanco can help to create a script that places guides at the center of the artboard.

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

Indeed, by dragging from the intersection of the rules while holding down the "Ctrl" key (under Windows), this creates a horizontal and vertical guide at the same time. All that remains is to move approximately towards the center until a small pink cross and the indication "Center" appear, to finally release the left click. Monika Gause's method also works and these two methods will be very useful to me!

Thank you for your help!

 

@mpchow Sorry, I saw your reply too late..

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

Good to hear that helped (still hoping for a script that does it with one click).

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

Bonjour, voici un script qui me donnait déjà satisfaction sur la version CS1 (11)

René

guide = true; pour vous

/*axe_centre.js réalisation LR
*** elleere
Trace un groupe composé de 2 axes X et Y au centre du plan de travail actif.
Possibilité d'ajouter plusieurs axes variable nbSeg par défaut = 2
Remarque: Si l'option guide = true, les axes sont tranformés en guide.
*/
// INIT----------------------------------
var nomGroupAxe = "Axe centre";
var nomAxe ="axe";
var couleur = macmykColor(0,62.18,94.12,0);
var guide = false;
var nbSeg = 2;
var ep =1;
//---------------------------------------
 if (app.documents.length > 0) {
    var Origin, largDoc, hautDoc, origX, origY, longAxe;
    var docRef = app.activeDocument;
        Origin = docRef.rulerOrigin;
        largDoc =docRef.width;
        hautDoc =docRef.height;
        origX = (largDoc/2)-Origin[0];
        origY = (hautDoc/2)-Origin[1];
        longAxe = Math.max(hautDoc,largDoc);

    var repereGroup, seg1, dupObjet;
        if (!guide) {
          repereGroup = docRef.activeLayer.groupItems.add();
          repereGroup.name = nomGroupAxe;
          }
          else repereGroup = docRef;
        // axe horizontal
        seg1 = repereGroup.pathItems.add();
        with(seg1){
          setEntirePath([[origX-longAxe,origY],[origX+longAxe,origY]]);
            if (guide) guides = true;
            else {
              filled = false;
              strokeColor = couleur;
              strokeWidth = ep;
              name = nomAxe+1;
            }
        }
        // axe(s) supplémentaire(s)
        for (i = 1; i < nbSeg; i++) {
          dupObjet = seg1.duplicate(repereGroup);
          dupObjet.rotate(180*i/nbSeg);
          if (!guide) dupObjet.name = nomAxe+(i+1);
        }
}
// -------
function macmykColor(c,m,j,k)
{ //crée une nouvelle couleur CMJN
  var cmykColor = new CMYKColor();
    with (cmykColor) {cyan = c; magenta = m; yellow = j;black = k;}
  return cmykColor;
}
// -------

 

 

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 27, 2024 Jul 27, 2024

Copy link to clipboard

Copied

LATEST

Merci beaucoup! Works fine!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines