0

我不知道如何将以下 AppleScript 翻译成 JXA(Mac OS X Yosemite 下的自动化 JavaScript):

tell application id "com.omnigroup.OmniGraffle6"
    tell canvas of front window
        make new line at end of graphics with properties {point list:L, draws shadow:false}
    end tell
end tell

这是我尝试过的,但是在执行最后一行时失败,错误为“AppleEvent handler failed”:

app = Application('OmniGraffle')

pt1 = app.Point({x:1,y:2})
pt2 = app.Point({x:1,y:2})

L = []
L.push(pt1)
L.push(pt2)

line = app.Line({pointList:L})

app.documents[0].canvases[0].lines.push(line)

任何人都可以帮忙吗?

谢谢, 奥雷连

4

2 回答 2

1

图形对象(线条、形状等)包含在图形集合中。因此,您必须将最后一行更改为

app.documents[0].canvases[0].graphics.push(line)
于 2015-10-06T14:56:04.210 回答
0

还有一个等效但稍微完整的示例:

(function () {
    'use strict';

    var og = Application("OmniGraffle"),
        ds = og.documents,
        d = ds.length ? ds[0] : null,
        cnvs = d ? d.canvases : [],
        cnv = cnvs.length ? cnvs[0] : null,
        gs = cnv ? cnv.graphics : null;

    return gs ? (
        gs.push(
            og.Line({
                pointList: [[72, 216], [216, 72]],
                drawsShadow: true,
                thickness: 3,
                lineType: 'orthogonal',
                strokeColor: [1.0, 0.0, 0.0],
                headType: "FilledArrow"
            })
        )
    ) : null;

})();
于 2015-12-28T17:10:01.283 回答