重新激活以前激活的窗口/程序applescript?
我有一个脚本可以激活 Firefox,刷新页面,等待 60 秒,然后再次执行,无限循环。我怎样才能让它回到之前活跃的状态?
假设我在后台使用 Firefox,并在 StackOverflow 上询问有关 Applescripting 的问题,但在等待回复时,我正在玩游戏。进入 Firefox 并刷新后,如何才能回到游戏?
代码:
i="0"
while [ $i == 0 ]
do
osascript -e '告诉应用程序“Firefox” activate'
osascript -e '告诉应用程序“系统事件”使用命令 down 键入代码 15'
暂停 10
返回到上一个窗口
睡 60
完成
I have a script that activates firefox, refreshes the page, waits 60 seconds, then does it again, in an infinite loop. How would I get it to go back to what was active before?
So say I have firefox in the background with a question about Applescripting on StackOverflow up, but while I wait for a response, I'm playing a game. How do I get it to, after going to firefox and refreshing, come back to the game?
Code:
i="0"
while [ $i == 0 ]
do
osascript -e 'tell application "Firefox" to activate'
osascript -e 'tell application "System Events" to key code 15 using command down'
pause 10
go back to previous window
sleep 60
done
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您已经在使用系统事件,因此可以使用它来隐藏应用程序。
Since you're already using System Events, use it to hide the application.