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

P: OpenType Number Features: Proportional, Tabular, Lining, and Oldstyle

LEGEND ,
Feb 22, 2016 Feb 22, 2016

Copy link to clipboard

Copied

A feature that has been sorely missing from Photoshop since the implementation of its OpenType capabilities is the ability to specify which number features to use. This feature is fully implemented in InDesign and Illustrator so it's puzzling that it would be missing from Photoshop.

Idea Released
TOPICS
macOS , Windows

Views

1.9K

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 1 Correct answer

Adobe Employee , Dec 10, 2019 Dec 10, 2019
Please take a look at what's in the latest release, accessible for the Properties panel, and share with us what you think.

Thanks!
David

Votes

Translate

Translate
32 Comments
Adobe Employee ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

Howdy Jayr or anyone,

Are there other fonts that have the same characteristic as Fedra, defaulting to Oldstyle?  I'm trying to guage how widespread this issue is.

Thanks,
David

Votes

Translate

Translate

Report

Report
Adobe Employee ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

Please take a look at what's in the latest release, accessible for the Properties panel, and share with us what you think.

Thanks!
David

Votes

Translate

Translate

Report

Report
LEGEND ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

I'd love to see it in its proper place (the Character type panel) as well.
It looks good—consistent with what we find in Illustrator.

Votes

Translate

Translate

Report

Report
LEGEND ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

Having just built a new machine, I don't have many fonts installed yet, but I can say from a quick perusal of my list that Playfair Display uses Oldstyle by default, and according to Google's stats, Playfair Display sees massive usage.

Georgia, which comes with practically everything, also uses Oldstyle figures by default. As well as several other default fonts: Constantia, Candara, Corbel, Gabriola, Sitka.

Votes

Translate

Translate

Report

Report
LEGEND ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

There is this really not cool way new feature but at least it works...
  • Type the numbers you want;
  • Select only one character with the mouse cursor;
  • A small dialog should appear;
  • Now you can select  the types available.
  • This feature also works with ligatures and other alternatives available on the typeface.
Hope it helps..

Votes

Translate

Translate

Report

Report
LEGEND ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

For those who might not have seen the new Figure option select field, I took a couple screenshots to briefly illustrate. The first shot shows the menu of options, and the second shows the button you have to tap/click to reveal the extra options in the Properties panel. In both shots, the Character panel is open, highlighting that the options are not available there.



Votes

Translate

Translate

Report

Report
New Here ,
Dec 10, 2019 Dec 10, 2019

Copy link to clipboard

Copied

LATEST
https://www.creativebloq.com/photoshop/scripts-4132441
Step 1 as described in the link above. (Make your own script / Step 01): Open a texteditor.

Step 2: paste the complete code above. Please include also the line „setStyle();“. Otherwise the function is only defined and not called.

Step3: Save the document as typeSetStyle.jsx e.g. to your dashboard.

Step 3: as described in the blogpost:
In Photoshop, open a document you’re working on. Select File > Scripts > Browse and locate your script [--> typeSetStyle.jsx ].

-----

If you want to set the typesettings to Tabular use this code

//Tabular
var idStyle = stringIDToTypeID( "tabularLining" );
//Normal
//var idStyle = stringIDToTypeID( "Nrml" );
//proportionalOldStyle 
//var idStyle = stringIDToTypeID( "proportionalOldStyle" );
-----

If you want to set the typesettings to Normal use this code

//Tabular
//var idStyle = stringIDToTypeID( "tabularLining" );
//Normal
var idStyle = stringIDToTypeID( "Nrml" );
//proportionalOldStyle 
//var idStyle = stringIDToTypeID( "proportionalOldStyle" );
-----

If you want to set the typesettings to OldStyle use this code

//Tabular
//var idStyle = stringIDToTypeID( "tabularLining" );
//Normal
//var idStyle = stringIDToTypeID( "Nrml" );
//proportionalOldStyle  var idStyle = stringIDToTypeID( "proportionalOldStyle" );




Votes

Translate

Translate

Report

Report