オブジェクト効果が PDF/X-4 形式で保存すると失われる
文字に適用したオブジェクト効果が PDF/X-4 形式で保存すると失われる(InDesign CS6/CC)
https://helpx.adobe.com/jp/indesign/kb/cq07150205.html
↑(文字以外も発生します)
吉田印刷さんでも記事になっていたこの件、Adobeが対応する気が無さそうなので、
スクリプトで問題パーツを探して「傾斜」を使わずにパーツを傾ける対応しています。
PDF/X-1aを書き出す。
Creative Cloudを導入せずCS5.5以下を使用する。
これ以外の対処法はないのでしょうか?
| 問題が発生する傾斜と透明効果が適用されたパーツを探すAppleScript |
|---|
tell application "Adobe InDesign CS6" activate if (count documents) is equal to 0 then display dialog ("ドキュメントを1つ開いてから、" & return & "もう一度実行してください。") buttons "終了" default button 1 with icon caution return end if set itemNum to count of page items of active document if itemNum < 1 then display dialog ("このドキュメントには" & return & "オブジェクトがありません。") buttons "終了" default button 1 with icon caution return end if set myItems to (every item of all page items of active document whose ((shear angle is not 0) and (class is not group) and ¬ ((applied of bevel and emboss settings of transparency settings is true) or ¬ (applied of inner shadow settings of transparency settings is true) or ¬ (applied of inner glow settings of transparency settings is true) or ¬ (applied of satin settings of transparency settings is true)))) if length of myItems > 0 then select nothing repeat with myItem in myItems select myItem --ロックされたオブジェクトは選択されない tell active window set zoom percentage to 200 end tell display dialog "PDF/X-4書き出しで、" & return & "透明効果が不正に出力される傾斜パーツです!" end repeat display dialog "PDF/X-4書き出しで、" & return & "透明効果が不正に出力される傾斜パーツが" & return & length of myItems & " 個見つかりました!" buttons "Adobeが悪い" default button 1 with icon caution select nothing else display dialog "PDF/X-4書き出しで、" & return & "透明効果が不正に出力される傾斜パーツは" & return & "ありませんでした。" buttons {"OK"} end if end tell |
