我使用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
答案 0 :(得分:0)
如果剪贴板是文本,您可以在AppleScript对话框中显示其内容:
try
display dialog (get the clipboard)
on error
display dialog "The clipboard is not text."
end try