我正在学习在Mac上使用AppleScript和Numbers应用程序。我有一个带有单元格“D1”的电子表格,这是一个预装了3个项目的弹出菜单。我想使用AppleScript选择第一个项目。我怎样才能做到这一点?这是我正在使用但它无法正常工作,因为它从单元格D1中删除了弹出菜单:
on run {input, parameters}
tell application "Numbers"
activate
tell the first table of active sheet of document 1
set item_list to {"Select", "Apples", "Oranges"}
set the value of cell "D1" to item 1 of item_list
end tell
end tell
return input
end run
我仍然希望单元格D1保留为包含所有3个项目的弹出菜单,但在运行脚本后,单元格D1将成为保存项目1值的常规单元格。