1
我有一個數字寫在一個文本文件。是否可以在文本文件中添加另一個號碼,然後用新號碼替換舊號碼?我的繼承人代碼:添加一個數字到變量applescript
set theFile to POSIX path of "Users:Tyler:Documents:File.txt"
open for access theFile
set theFileContents to read theFile
set theNewFile to run script theFileContents + 1
tell application "TextEdit"
set eof of theFileContents to 0
write theNewFile to theFileContents
這正是我想要做的,它的工作完美。謝謝! –
不客氣。不過,我很好奇,你用腳本來綁定什麼? – mcgrailm
@mcgralim我以前使用過腳本來製作一個計算器。 '將theMath設置爲返回的文本(顯示對話框「在這裏插入數學問題」默認答案「」buttons {「Cancel」,「Ok」}}默認按鈕2)' 運行腳本theMath –