如何使用Applescript显示剪贴板

时间:2016-11-10 00:58:09

标签: applescript

我使用Applecript菜单中的Finder来显示剪贴板。 我想知道别的东西或显示剪贴板的方式。谢谢你的回答。

tell application "System Events" to tell process "Finder"
    set frontmost to true
    click menu item "show Clipboard" of menu "Edit" of menu bar 1
end tell

1 个答案:

答案 0 :(得分:0)

如果剪贴板是文本,您可以在AppleScript对话框中显示其内容:

try
    display dialog (get the clipboard)
on error
    display dialog "The clipboard is not text."
end try