如何在全屏模式下打开Firefox?

时间:2012-03-03 01:15:46

标签: firefox applescript fullscreen kiosk-mode

我需要在以全屏模式运行Lion的Mac上打开Firefox,以充当自助服务终端。

我使用的是R-Kiosk 0.9.0 Firefox附加组件;但是,它与我正在运行的打印javascript冲突,所以我无法使用它。

任何人都知道如何实现这一目标?要么使用附加组件,要么使用AppleScript?可以在Firefox打开时触发AppleScript运行吗?

2 个答案:

答案 0 :(得分: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

答案 1 :(得分:-1)

从版本71开始,您可以使用-kiosk 参数打开Firefox以全屏打开它。

例如:

c:\"Program Files (x86)\Mozilla Firefox\firefox.exe" --kiosk