AppleScript로 숫자에 새로운 행을 추가하거나 시트 (또는 SQL 데이터베이스)
내 데이터를 .plist에 저장할 수 있습니다.
set myDateFromPlist to value of property list item "myDate" of p_list
아이디어는 동일한 행에있는 모든 변수를 사용하여 데이터베이스 또는 시트를 만드는 것입니다. (그리고 스크립트를 다시 실행할 때 더 많은 데이터를 가진 새로운 행을 추가하십시오
예 :
날짜 | var1 | var2 | var3 날짜 | var1 | var2 | var3
내가 지금까지 시도한 것
tell application "Numbers"
activate
try
if not (exists document 1) then error number 1000
tell document 1
try
tell active sheet
set the selectedTable to ¬
(the first table whose class of selection range is range)
tell the selectedTable to add row below last row
tell the selectedTable to set value of first cell to myDateFromPlist
tell the selectedTable to set value of second cell to myTimeFromPlist
tell the selectedTable to set value of third cell to theIDFromPlist
end tell
on error
error number 1001
end try
tell selectedTable
-- editing statements go here
end tell
end tell
그 문제 :
1 : 번호를 열어야합니다 (하지만 어쨌든 요구 사항 일 수 있습니다).
2 : 데이터가 항상 첫 번째 행에 추가됩니다.