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

Aligning text vertically in Indesign CC (newest)

New Here ,
Jul 02, 2016 Jul 02, 2016

Hi Everyone,

I'm running Indesign CC 2015 v11.4.0.90 (Mac OS X 10.11.3), and I've lost the ability to vertically align text. I'm not sure this is exactly what it was called, but you used to be able to make the txt site at the top, bottom or middle of the text frame - can't find this anywhere in the newest version. I use it pretty regularly, and I urgently need it now (don't want to just create a workaround, ideally) - can anybody give any insight as to where the setting has gone?

I've tried searching the help section, and tried changing workspaces, but still can't find the little collection of buttons!

Thanks,

Jonny

24.1K
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
Explorer ,
Feb 08, 2025 Feb 08, 2025
LATEST

Użyj skryptu i przypisz skrót klawiaturowy.

//Assign a keyboard shortcut for effective use
if (app.selection[0].hasOwnProperty("textFramePreferences")) {
	if (app.selection[0].textFramePreferences.verticalJustification == VerticalJustification.TOP_ALIGN) {
		app.selection[0].textFramePreferences.verticalJustification = VerticalJustification.CENTER_ALIGN;
	} else if (app.selection[0].textFramePreferences.verticalJustification == VerticalJustification.CENTER_ALIGN) {
		app.selection[0].textFramePreferences.verticalJustification = VerticalJustification.BOTTOM_ALIGN;
	} else if (app.selection[0].textFramePreferences.verticalJustification == VerticalJustification.BOTTOM_ALIGN) {
		app.selection[0].textFramePreferences.verticalJustification = VerticalJustification.TOP_ALIGN;
	}
}
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