Quitter
  • Communauté internationale
    • Langue:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티

Aligning text vertically in Indesign CC (newest)

Nouveau ici ,
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
Traduire
Signaler
Directives de la communauté
Restez bienveillant et courtois, ne vous attribuez pas la paternité des créations d’autrui et assurez-vous de l’absence de doublons avant de poster du contenu. En savoir plus
community guidelines
Explorateur ,
Feb 08, 2025 Feb 08, 2025
LA PLUS RÉCENTE

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;
	}
}
Traduire
Signaler
Directives de la communauté
Restez bienveillant et courtois, ne vous attribuez pas la paternité des créations d’autrui et assurez-vous de l’absence de doublons avant de poster du contenu. En savoir plus
community guidelines