DTP駆け込み寺

[ 返信 ]

透明のオンオフ切り替えスクリプト

◎表示画質の設定が高品質表示の場合
│もし3番目の透明がオフではないなら
│・3番目の透明をオフに設定
│さもなくば
│・3番目の透明をデフォルトに設定

◎表示画質の設定が一般表示の場合
 もし2番目の透明がオフではないなら
 ・2番目の透明をオフに設定
 さもなくば
 ・2番目の透明をデフォルトに設定

tell application "Adobe InDesign CC 2017"
 set vds to view display setting of layout window 1
 if vds is high quality then
  if transparency of display setting 3 is not off then
   set transparency of display setting 3 to off
  else
   set transparency of display setting 3 to default
  end if
 else if vds is typical then
  if transparency of display setting 2 is not off then
   set transparency of display setting 2 to off
  else
   set transparency of display setting 2 to default
  end if
 end if
end tell

[20332] Macも使ってました (2020/06/17 Wed 00:29)


残り2件

  1. [20329] indesign ページごとにフレームの色味が変わる nnn 2020/06/16 14:38
    1. [20330] Re: indesign ページごとにフレームの色味が変わる Win使いですけど 2020/06/17 00:23
    2. [20331] 高速表示切り替えスクリプト Win使いですけど 2020/06/17 00:25
    3. [20332] 透明のオンオフ切り替えスクリプト Macも使ってました 2020/06/17 00:29
      1. [20333] Re: 透明のオンオフ切り替えスクリプト nnn 2020/06/17 11:45
    4. [20334] Re: indesign ページごとにフレームの色味が変わる -e 2020/06/17 15:01