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

Vertical Text not Appearing via Publish Online

New Here ,
Jun 01, 2020 Jun 01, 2020

Copy link to clipboard

Copied

I recently published using Publish Online. The one page with vertical text does not show the vertical text in the full view, but does show it in the thumbnails (see attached screenshot). I tried a couple times to Publish Online in pdf format, then tried png. Same problems both times. If I export the document to a pdf, it works fine and the vertical text appears correctly. Any ideas? Thanks in advance.

TOPICS
Bug , Publish online

Views

599

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

Community Expert , Jun 05, 2020 Jun 05, 2020

Hi Greg,

so because text on a path is not working, you have two options:

 

[1] Do every character in its own frame.

 

[ 2.1 ] Do rotated text by using the Japanese paragraph composer.

[ 2.2 ] Then rotate the text frame.

I assume that you are not using the Japanese version of InDesign so the Japanese paragraph composer is not directly available through the GUI. But you can apply it to selected text by scripting.

 

Just did it here to the special character auto page number:

https://community.adobe.com/t5/indesign/make-page-numbers-appear-in-column/m-p/11168048#M188186

...

Votes

Translate

Translate
Community Expert ,
Jun 02, 2020 Jun 02, 2020

Copy link to clipboard

Copied

Hi Greg,

how exactly did you do the vertical text?

What's your exact version of InDesign?

 

Regards,
Uwe Laubender

( ACP )

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

Copy link to clipboard

Copied

Thanks for asking.

I used the Type Along A Path tool.

I have version 15.0.3 x64

Greg

--
Greg Rhodes
360-506-8112

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 ,
Jun 05, 2020 Jun 05, 2020

Copy link to clipboard

Copied

LATEST

Hi Greg,

so because text on a path is not working, you have two options:

 

[1] Do every character in its own frame.

 

[ 2.1 ] Do rotated text by using the Japanese paragraph composer.

[ 2.2 ] Then rotate the text frame.

I assume that you are not using the Japanese version of InDesign so the Japanese paragraph composer is not directly available through the GUI. But you can apply it to selected text by scripting.

 

Just did it here to the special character auto page number:

https://community.adobe.com/t5/indesign/make-page-numbers-appear-in-column/m-p/11168048#M188186

 

The code is below.

Just select all the text you want to rotate by 90° and run the following ExtendScript code on your selection:

 

// Text selected.
app.selection[0].properties =
{
	characterRotation : 90 ,
	composer : "$ID/HL Single J"
};

 

 

After I selected all the text in the frame and running the script the result is this:

( Note: Also set tracking to value -100 )

 

RotatedText-90°-JapaneseParagraphComposerSingleLine.PNG

 

The result can be published online without a flaw:

https://indd.adobe.com/view/c61fe0a3-5981-4ff8-911f-78ca7c4a4a42

 

By applying baseline shift you could fine-tune the position of single characters like the starting "C" of "CLASS":

( Original position in gray. Did baseline shift with -3 Pt on the 72 Pt "C". )

 

BaselineShift-FineTunePositionsOfCharacters.PNG

 

How to work with ExtendScript code, save a script file, install and use it, see Marc Autret:

http://www.indiscripts.com/pages/help#hd0sb2

 

Regards,
Uwe Laubender

( ACP )

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