Applescript通过MAC

时间:2016-09-28 01:24:10

标签: macos applescript

我搜索过并发现Applescript无法检测到用户按下的按键。我想知道还有其他选择吗?

我正在为所有互联网浏览器,IE,FF,Chrome,Safari中的特定标签构建脚本。

1)特定选项卡将模糊,标题选项卡,favicon,地址栏中的URL将被屏蔽或替换。

2)例如,当用户按“tab”键时,它将临时删除在步骤1中完成的所有操作。

3)如果用户再次按Tab键,它将返回步骤1中的状态。

我只是设法暂时使身体模糊,但不是第1步的其余部分和检测按键。

以下是我的代码:

tell application "Google Chrome"
    set allTabs to front window's tab
    repeat with eachTabs from 1 to count of allTabs
        set eachTab to item eachTabs of allTabs
        if URL of eachTab = "https://web.whatsapp.com/" then
            set currentTab to eachTabs
        end if
    end repeat
    tell front window
        tell tab currentTab
            execute javascript "document.body.style.filter = 'blur(0)'"
        end tell
    end tell
end tell

我对此完全陌生,这是我第一次这样做。

希望你们能帮我解决这个问题。 =(

先谢谢你们!

0 个答案:

没有答案