DTP駆け込み寺

[ 返信 ]

Re^3: マゼンタ版を透明もしくはカットしたい

--上の続きです。この文章は不要です。

on paperset()
tell application "System Events"
tell process "AdobeAcrobat"
set frontmost to true
click menu item "プリント設定..." of menu "ファイル" of menu bar 1
end tell
end tell
end paperset
on doOK()
tell application "System Events"
tell process "AdobeAcrobat"
try
click button "OK" of window 1
end try
end tell
end tell
end doOK
on PdfPrint()
tell application "System Events"
tell process "AdobeAcrobat"
set frontmost to true
click menu item "プリント..." of menu "ファイル" of menu bar 1
click button "詳細設定…" of window "プリント"
delay 0.5
tell window "詳細設定"
set pos to position
set x0 to item 1 of pos
set y0 to item 2 of pos
select row 1 of outline 1 of scroll area 1
tell group "カラー"
click pop up button 1
click menu item "色分解" of menu 1 of pop up button 1
tell group "インキ"
set x1 to x0 + 258
repeat with i in {0, 1, 2}
set y1 to y0 + 359 + i * 18
set winpos to x1 & "," & y1
do shell script "cliclick c:" & winpos
end repeat
end tell
end tell
click button "OK"
end tell
click button "プリント" of window "プリント"
end tell
end tell
end PdfPrint

[17944] -e (2015/04/22 Wed 11:43)

  1. [17874] マゼンタ版を透明もしくはカットしたい DUCK 2015/03/20 17:37 *
    1. [17875] Re: マゼンタ版を透明もしくはカットしたい 2015/03/20 21:26
    2. [17876] Re: マゼンタ版を透明もしくはカットしたい 通りすがりの土曜出勤 2015/03/21 09:23
      1. [17878] Re^2: マゼンタ版を透明もしくはカットしたい DUCK 2015/03/21 16:12
      2. [17879] Re^2: マゼンタ版を透明もしくはカットしたい DUCK 2015/03/21 16:22
    3. [17882] Re: マゼンタ版を透明もしくはカットしたい -e 2015/03/23 12:01
      1. [17883] Re^2: マゼンタ版を透明もしくはカットしたい DUCK 2015/03/23 17:51
        1. [17942] Re^3: マゼンタ版を透明もしくはカットしたい -e 2015/04/22 11:39
        2. [17943] Re^3: マゼンタ版を透明もしくはカットしたい -e 2015/04/22 11:43
        3. [17944] Re^3: マゼンタ版を透明もしくはカットしたい -e 2015/04/22 11:43