AppleScript を使用して、数値ファイル (テンプレートに基づいて毎日新しいシートが必要) でシートを複製しようとしています。私はAppleScriptに本当に慣れていませんが、実行したPythonスクリプトから取得した結果をいくつかのセルに入力するためにすでに使用していますが、このビットはまだ手動です... =/
tell application "Numbers"
tell document 1
set thisSh to make new sheet with properties {name:"May14"}
duplicate sheet "Template" to sheet "May14"
end tell
end tell
上記のコードはエラーを返します:error "Numbers got an error: Sheets can not be copied." number -1717
したがって、私の質問: 数字シートを複製する方法はありますか?
現在 iWork '14 を数字 3.2 で実行しています
ありがとう!
PS私もduplicate every table of sheet "Template" to sheet "May14"
同様のエラーで試しました:Tables can not be copied.