這是我的第一個applescript。我使用automator啓動腳本作爲 我將新文件放到一個文件夾(文件夾操作)。使用TextEdit打開文件並將它們導出爲pdf
在Automator中我有2個作用: 1獲得指定的Finder項 2-蘋果腳本
但我不能讓它運行。腳本在打開文件後沒有警告地停止。
下面是腳本:
on run {input, parameters}
tell application "TextEdit" to activate
repeat with theFile in input
set theFilePath to theFile as alias
tell application "TextEdit" to open theFilePath
tell application "System Events"
tell process "TextEdit"
set foremost to true
click menu item "Export as PDF..." of menu "File" of menu bar 1
click button "Save"
click menu item "Close" of menu "File" of menu bar 1
end tell
end tell
end repeat
return input
end run
誰能幫助我在這?
我只想使用TextEdit將指定文件夾中的所有文件導出爲pdf。
感謝
「key code 36」和「key code 13 using command down」代表什麼? – t4ncr3d3
「按鍵代碼36」是按下返回鍵,並且「使用命令按下的按鍵代碼13」是按下命令並且「w」是用於關閉窗口或文檔的快捷方式 – wch1zpink