如何使用applescript选择幻灯片上的所有文本项?

时间:2017-12-14 11:51:51

标签: applescript keynote

我想使用Apple脚本仅选择幻灯片上的文本项。

if(preg_match("/HT-([A-Za-z0-9]+) CLASS-([A-Za-z0-9]+)/", $item, $output))
{
    $html .= "<li>".implode(" ",array_slice($output,1))."</li>";
}

我一直收到以下错误:

tell application "Keynote"
    activate

    tell front document     

        tell slide 1
            select (every text item)
        end tell
        -- save
    end tell

end tell

非常感谢任何帮助!

0 个答案:

没有答案