1

我使用a reference to cell...以便稍后设置单元格的值而不必经过document:sheet:table“路径”。我在代码的另一部分需要此单元格的表格名称,但我无法直接从单元格中获取它(对单元格的引用)。表格具有属性parent,但单元格没有 :-(。

我在这里找到了类似的东西properties-of-an-object-or-class但没有帮助。

我发现的唯一方法是将表的信息存储在另一个变量中。

有什么改进它的想法吗?

这是一些有效的代码:

tell application "Numbers"
tell document 1
    tell sheet 1
        tell table 1
            (*
            more code here
            I make sure the selection range is a cell
            etc.
            *)
            set cellXref to a reference to cell (name of selection range)
            set cellXrefTable to it
            set tableXName to name of cellXrefTable --or set tableXName to name of it
        end tell
    end tell
end tell
set value of cellXref to 1000000
end tell
4

0 回答 0