0
這可能是一個非常基本的問題;applescript:更新屬性?
我總是看到
make new document with properties { x: "1", y: "2", z: 3" }
但我怎麼在以後更新這些屬性?
tell first document
-- i am trying to set the volume name property
set volume name of document to "BLA"
-- also tried:
set properties of first document to {volume name:"BLA"}
end tell
但這根本不起作用,官方語法是什麼?無法在線找到它。