2012-03-03 73 views
2

我需要在以全屏模式運行Lion的Mac上打開Firefox,以充當信息亭。如何在全屏模式下打開Firefox?

我正在使用R-Kiosk 0.9.0 Firefox附加組件;但是,它與打印的JavaScript衝突我也在運行,所以我不能使用它。

任何人都知道一種方法來實現這一點?無論是加載項還是AppleScript?打開Firefox時是否可以觸發AppleScript運行?

回答

3

這應做到:

activate application "Firefox" 
delay 2  
tell application "System Events" 
tell process "Firefox" 
    click menu item "Full Screen" of menu 1 of menu bar item "View" of menu bar 1 
end tell 
end tell 

,或者一個按鍵:

activate application "Firefox" 
delay 2 
tell application "System Events" 
keystroke "f" using {command down, shift down} 
end tell 
+0

Hummm ......我得到一個錯誤信息: 系統事件得到了一個錯誤:無法獲取菜單過程「Firefox」的菜單欄1的欄項「查看」。 – JustBobF 2012-03-03 03:51:25

+0

我用Firefox打開測試過。如果應用程序關閉,則需要添加延遲。這兩個賬戶上都有賓果遊戲 – adayzdone 2012-03-03 04:27:15

+0

。非常感謝!!! – JustBobF 2012-03-03 06:32:56

相關問題