我想使用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
非常感谢任何帮助!