在 Mac 上的 Excel 2008 中,我想在同一 Excel 文档中使用 AppleScript 在单元格“A8”上的工作表 1 上创建一个超链接。
<hyperlink ref="A8" location="Sheet1!A20" display="Sheet1!A20" />
我尝试了以下脚本,但它不起作用:
tell application "Microsoft Excel"
make new workbook
tell worksheet "Sheet1" of active workbook
make new hyperlink of cell "A8" with properties {address :"#Sheet1!A20", text to display:"Sheet1!A20"}
end tell
end tell
你能帮我弄清楚该怎么做吗?