2010-10-20 30 views
1

我想要一個簡單的按鍵指令顯示在Safari 5.0.2的所有書籤,但它不工作 -按鍵命令,在Safari中顯示所有書籤不工作

tell application "Safari" to activate 
tell application "System Events" 
    keystroke "B" using {option down, command down} 
end tell 
end 

任何人都可以給我建議,我可能是錯誤?

感謝,

Miraaj

回答

3

嘗試有點 'B':

tell application "Safari" to activate 
tell application "System Events" 
    keystroke "b" using {option down, command down} 
end tell 

大乙轉化爲 +

+0

thanx ..它工作:) – Devarshi 2010-10-20 07:13:55