私は生徒のために統合されたプレゼンテーションを作成しようとしています。
システム:OS X Lion 10.7
そのために、別の画面のコマンドラインによってリモート制御される3Dプレゼンテーションを実行しているフォアグラウンドウィンドウを表示する必要があります。
それに加えて、その背後にあるPDFスライドの小さなセットを示したいと思います。
バックグラウンドのPDFビューア(Adobe ReaderまたはPDFView)を「リモート制御」して、次のような単純なコマンドを受け入れる方法が必要です。
- ページに移動
x
(理想的には) - 最初のページに移動(
home button
) - 次のページに移動します(、、、または
arrow down
すべて実行します)arrow right
page down
scroll down
PDFをAdobeReaderフルスクリーンモードで実行することを好みます(背景を作成して別のウィンドウを上にオーバーレイできますが、PDFViewでも実行できます。
私はさまざまなApplescript(で実行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)