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

Bullet Points in Illustrator

Contributor ,
Jun 13, 2020 Jun 13, 2020

How to add bullet points / list formating in AI?

 

https://community.adobe.com/t5/illustrator/how-do-i-add-bullet-points-to-text-in-illustrator/m-p/223...

They say press option-8: I only get "{"

 

TOPICS
Draw and design , Tools , Type
11.3K
Translate
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 4 Correct answers

Community Expert , Jun 13, 2020 Jun 13, 2020

Not automatically.

You can use a formatting with a paragraph padding left and then a negative first line indent. And of course a TAB between the bullet and the text.

 

The bullet can be typed using ALT+Ü on the Mac.

Translate
Community Expert , Jun 13, 2020 Jun 13, 2020

Unfortunately, there is no automated bulleted list in Illustrator. Take a look at this helpful tutorial:

https://www.rockymountaintraining.com/adobe-illustrator-bullet-lists/

Translate
Community Expert , Jun 14, 2020 Jun 14, 2020
Translate
Community Expert , Oct 27, 2022 Oct 27, 2022
quote

In Illustrator I am getting bullets when I do not want them.

When I format using the Text ruler, when I type a dash it's turning the bullet feature on.


By @williamb21511271

 

This thread discusses the exact opposite. You might want to read about the new feature here: https://helpx.adobe.com/illustrator/using/bullets-numbering.html

 

To turn it off, Check out Preferences > Type. You will find it there.

Translate
Adobe
Community Expert ,
Jun 13, 2020 Jun 13, 2020

In most fonts on the Mac Option 8 produces a bullet. I don’t know what happens when you type Alt 8 on Windows. You can use the Glyphs panel.

Translate
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 ,
Jun 13, 2020 Jun 13, 2020

How is your language set up for the keyboard?

Translate
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
Contributor ,
Jun 13, 2020 Jun 13, 2020

OK. Got it. It's different in the German layout. However, I'm looking for a list formatting

  • with a bullet point
  • aligned to the left border
  • with constant spacing from the bullet to the text

Is there something like that in AI?

Translate
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 ,
Jun 13, 2020 Jun 13, 2020

Not automatically.

You can use a formatting with a paragraph padding left and then a negative first line indent. And of course a TAB between the bullet and the text.

 

The bullet can be typed using ALT+Ü on the Mac.

Translate
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 ,
Jun 13, 2020 Jun 13, 2020

Unfortunately, there is no automated bulleted list in Illustrator. Take a look at this helpful tutorial:

https://www.rockymountaintraining.com/adobe-illustrator-bullet-lists/

Translate
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
Contributor ,
Jun 13, 2020 Jun 13, 2020

Thank you!

Reading forums I realize, people struggle with that since at least 10 years. Is there no script available to automate it?

Translate
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
LEGEND ,
Jun 14, 2020 Jun 14, 2020

It would be nice to be able to do this in Illustrator. But in case anyone is not aware of it, this sort of task (body text, structured text etc.) is easy to do in InDesign, and it is Adobe's tool for the job. It is usually simple to design the non-text elements in Illustrator and place that into InDesign to add the structured and body text. 

Translate
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
Contributor ,
Jun 14, 2020 Jun 14, 2020

If you do print, yes. But not if you prepare dozens of slides for Premiere and After Effects. Unfortunately PP&AE don't read ID. Exporting from ID to anything isn't a workflow. We pay tons of money for CC because those programs (are supposed to) work together.

Translate
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 ,
Jun 14, 2020 Jun 14, 2020
Translate
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
Contributor ,
Jun 14, 2020 Jun 14, 2020

Thank you!

Translate
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 ,
Jun 14, 2020 Jun 14, 2020

Hi,

@hello-there wrote: "… Is there no script available to automate it?"

 

Not that I know.

But that should not be to complicated (depend on your requirements).

 

Select an areatext textframe and run this (quick and dirty written) snippet:

 

 

// tabulator_BulletList_textArea.jsx
// required: selected areatext textframe (with sample text, one or more paragraphs)

// that snippet will insert a bullet point and leading tab in every paragraph of the selected areatext textframe
// https://community.adobe.com/t5/illustrator/bullet-points-in-illustrator/td-p/11206343?page=1
// Bullet Points in Illustrator 
// regards pixxxel_schubser 14.Juni 2020

create_BulletList ();

function create_BulletList () {
try {
var aDoc = app.activeDocument;
var aSel = selection[0];

if (aSel.typename != "TextFrame" || aSel.kind != TextType.AREATEXT) {
    alert ("wrong selection");
    return;
    }
} catch (e) {
    alert ("wrong selection");
    return;
    }

    var thePara = aSel.paragraphs;
    var p = null;
    var t = new Array();
    t[0] = new TabStopInfo;
    t[0].position = 20;

    for ( i=0; i<thePara.length; i++ ) {
        p = thePara[i];
        p.contents = "\u2022\t"+p.contents;
        p.tabStops = t;
        }
    return;
}

 

 

 

You can still do a lots of improvements - but for the beginning …

 

Before:

BulletList_01_before.png

 

After:

BulletList_02_after.png

 

If that works for you

have fun

😉

Translate
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 ,
Jun 17, 2020 Jun 17, 2020

@hello-there

 

???

Translate
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 ,
Jun 17, 2020 Jun 17, 2020

By any chance, is your Num Lock key on?

 

Translate
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
Contributor ,
Jul 02, 2020 Jul 02, 2020

Your script is amazing. I appreciate it very much. Unfortunately, I get the syntax error 8, Line 1, -> PK.

Translate
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 02, 2020 Jul 02, 2020

That's strange.

Line #1 is only a comment. That line does nothing.

Translate
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 03, 2020 Jul 03, 2020

@hello-there,

could you please show me a screenshot of the code (in your editor) - and a screenshot of the error message?

 

And additionally a screenshot of your AI file with selected text object and visible "hidden characters"?

 

Translate
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
New Here ,
Oct 27, 2022 Oct 27, 2022

In Illustrator I am getting bullets when I do not want them.

When I format using the Text ruler, when I type a dash it's turning the bullet feature on.

Translate
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 ,
Oct 27, 2022 Oct 27, 2022
LATEST
quote

In Illustrator I am getting bullets when I do not want them.

When I format using the Text ruler, when I type a dash it's turning the bullet feature on.


By @williamb21511271

 

This thread discusses the exact opposite. You might want to read about the new feature here: https://helpx.adobe.com/illustrator/using/bullets-numbering.html

 

To turn it off, Check out Preferences > Type. You will find it there.

Translate
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