重新激活以前激活的窗口/程序applescript?

发布于 2024-10-31 04:58:48 字数 528 浏览 1 评论 0原文

我有一个脚本可以激活 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无妨# 2024-11-07 04:58:48

由于您已经在使用系统事件,因此可以使用它来隐藏应用程序。

tell application "System Events" to keystroke "h" using command down

Since you're already using System Events, use it to hide the application.

tell application "System Events" to keystroke "h" using command down
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文