如何使用applescript在系统打印对话框中输入?

Uri*_*Uri 6 printing applescript google-chrome osx-snow-leopard

如果它们适合某种URL模式(例如,不是一组给定的URL),我想自动打印chrome窗口(没有对话框).

你能用苹果脚本吗?有人可以分享一个例子吗?(我没有Mac,所以我无法真正尝试自己)

Lri*_*Lri 6

set i to 1
tell application "Google Chrome"
    activate
    tell window 1
        repeat with t in tabs
            --if title of t starts with "Example" then
            if {"http://example.com/", "http://aa.com/"} does not contain URL of t then
                set active tab index to i
                tell t to print
                delay 1
                tell application "System Events"
                    click button "Print" of window 1 of process "Chrome"
                    --keystroke return
                end tell
            end if
            set i to i + 1
        end repeat
    end tell
end tell
Run Code Online (Sandbox Code Playgroud)