我正在尝试为我的学生进行综合演示。
系统:OS X Lion 10.7
为此,我需要显示一个运行 3D 演示文稿的前景窗口,该演示文稿由另一个屏幕上的命令行远程控制。
除此之外,我想在它后面展示一小组 PDF 幻灯片。
我需要某种“远程控制”后台PDF 查看器(Adobe Reader 或 PDFView)的方式来接受简单的命令,例如
- 转到页面
x
(理想情况下) - 转到第一页 (
home button
) - 转到下一页 (
arrow down
,arrow right
,page down
或scroll down
都可以)
我更喜欢在 Adobe Reader 全屏模式下运行 PDF(允许我将其设置为背景并在顶部覆盖另一个窗口,但 PDFView 也可以。
我尝试了各种 Applescripts(使用 运行osascript
),但没有成功:
tell application "System Events"
tell process "Adobe Reader"
tell window "starkdemo.pdf" to key code 125
end tell
end tell
将密钥发送到我的终端
tell application "/Applications/Adobe Reader.app"
tell active pane of active window
large scroll down 1
end tell
end tell
给我一个错误63:69: script error: Expected end of line but found class name. (-2741)