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

ruby flag ??

Community Beginner ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

  • What we want to try is to search for text messages and put in Ruby characters.
  • and font name, fontstyle, text group..

Views

520

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
Adobe
Community Expert ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

Can you explain a bit more please and also indicate your InDesign version and OS.

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 ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

Like Derek, I'm confused about what you are asking. Are you trying to import Text Messages into InDesign and format them there?

Please clarify.

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 ,
May 29, 2018 May 29, 2018

Copy link to clipboard

Copied

Ruby is a feature of the Japanese version of InDesign. Is that what you're using? Are you a native Japanese speaker? If so, you will get better support in the Japanese InDesign forum here:

InDesignコミュニティフォーラム (Japan)

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 ,
May 30, 2018 May 30, 2018

Copy link to clipboard

Copied

We can not apply find text with apply ruby directly. However, We can use the clipboard with find change panel.

Here is a solution,

1. Select words and apply ruby manually.

スクリーンショット 2018-05-31 8.27.25.png

2. Copy it to the clipboard.

スクリーンショット 2018-05-31 8.27.42.png

3. find and replace with the styled clipboard. like below.

スクリーンショット 2018-05-31 8.28.15.png

Other solution, You can use scripts like below.

app.findTextPreferences.findWhat = "機能拡張";

var tgt = app.findText();

for (var i=0;i<tgt.length;i++){

  tgt.select();

  tgt.rubyString = "きのうかくちょう";

  tgt.rubyType = 1249011570;

  tgt.rubyFlag= true;

  }

rubyFont, rubySize. rubyFill and other properties also available in textStyleRenge class.

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 Beginner ,
Jun 03, 2018 Jun 03, 2018

Copy link to clipboard

Copied

Thanks very much!

I want multiple Exchange or Array?

I'm going to make several changes at once.

It's hard to try a little knowledge.

Please help me one more time.

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 04, 2018 Jun 04, 2018

Copy link to clipboard

Copied

LATEST

The find and replace panel doesn't have a feature of multiple replacements.

If you want to replace multiple, You need to make a custom script. Please refer my previous posts code.

It makes a single replacement. However, You can make findWhat and rubyString arrays, replace each pair by a loop.

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