Copy link to clipboard
Copied
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
Copy link to clipboard
Copied
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;
}
}
Find more inspiration, events, and resources on the new Adobe Community
Explore Now