2011-01-14 73 views
0

我正在嘗試編寫一些檢查PowerPoint 2011是否正在播放演示文稿的AppleScript。如何使用AppleScript檢查PowerPoint是否正在播放演示文稿?

此前,我爲Keynote編寫了以下代碼。

on isKeynotePlaying() 
    tell application "Keynote" 
     get properties 
     return (not frozen) and playing 
    end tell 
end isKeynotePlaying 

通過PowerPoint的AppleScript的圖書館,屬性和階級屬性,和谷歌搜索結果中搜索後,我仍然沒有能夠產生同等的解決方案。有任何想法嗎?

回答

1

深入研究PowerPoint的AppleScript庫之後,我偶然發現了slide show view類。這是我的解決方案。

on isPowerPointPlaying() 
    tell application "Microsoft PowerPoint" 
     return slide state of slide show view of slide show window of active presentation is slide show state running 
    end tell 
end isPowerPointPlaying 
相關問題