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

How can i make the inset spacing according to my font size?

New Here ,
Nov 02, 2020 Nov 02, 2020

Copy link to clipboard

Copied

Hi it would be so nice if someone could help me with the following problem:

 

I want the inset spacing of my text box to be exactly 2,5 times the width of the letter "i".

 

I don't want to insert the inset spacing in pixels. it should change with the font size.

 

Thank you so much!

 

TOPICS
How to , Type

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 2 Correct answers

Mentor , Nov 02, 2020 Nov 02, 2020

>> I don't want to insert the inset spacing in pixels.

- you can write inset in pt and press enter. 

https://www.creativepro.com/change-measurement-systems-on-the-fly/

- you can set pt as deafult measure system in the settings or by R.Cl in the ruler

https://youtu.be/_f70qKBzJP0

 

 

>> it should change with the font size.

Here you need a programer to ask him do a script. Why do you need this?

 

 

Votes

Translate

Translate
Community Expert , Nov 02, 2020 Nov 02, 2020

There isn’t a feature that would flex the inset.

 

You might be able to do it with scripting, a character has a beginning and ending offset, so this would get the width of a selected i including its side bearings:

 

 

 

var sel = app.activeDocument.selection[0];
alert("Selected Character Width = " + (sel.endHorizontalOffset-sel.horizontalOffset))

 

 

 

 

Votes

Translate

Translate
Mentor ,
Nov 02, 2020 Nov 02, 2020

Copy link to clipboard

Copied

>> I don't want to insert the inset spacing in pixels.

- you can write inset in pt and press enter. 

https://www.creativepro.com/change-measurement-systems-on-the-fly/

- you can set pt as deafult measure system in the settings or by R.Cl in the ruler

https://youtu.be/_f70qKBzJP0

 

 

>> it should change with the font size.

Here you need a programer to ask him do a script. Why do you need this?

 

 

Remember, never say you can't do something in InDesign, it's always just a question of finding the right workaround to get the job done. © David Blatner

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
New Here ,
Nov 02, 2020 Nov 02, 2020

Copy link to clipboard

Copied

spacing.pngi want to realise the following spacing(x=4*a=2,5*width of "i"):

 

i dont see rn how any of the normal measure units would help me, because if i want to do so i have to maesure the "i"s manually every time 😕

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 ,
Nov 02, 2020 Nov 02, 2020

Copy link to clipboard

Copied

LATEST

There isn’t a feature that would flex the inset.

 

You might be able to do it with scripting, a character has a beginning and ending offset, so this would get the width of a selected i including its side bearings:

 

 

 

var sel = app.activeDocument.selection[0];
alert("Selected Character Width = " + (sel.endHorizontalOffset-sel.horizontalOffset))

 

 

 

 

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