2013-06-05 33 views
10

我真的與創建OSX上啓動一個瀏覽器窗口(鉻)與細節,如窗口大小,無標籤等傳統我用VB腳本,通過窗口的一些方法掙扎與IE瀏覽器這是一個非常簡單的練習,但我會第一個承認,當涉及到Mac我拼搏。的AppleScript將推出Chrome瀏覽器(帶細節)

因此,這裏是我的願望清單。

我需要能夠打開一個窗口(最好在鉻,但是除了Safari瀏覽器的任何其他瀏覽器),一個沒有狀態欄,與給定的URL沒有地址欄,和特定的窗口大小。我沒有管理使用做的JavaScript Safari瀏覽器的東西,並使用執行試圖與鉻相同的javascript和「window.open」但這未能持續...

幫助!

回答

23

我沒有找到任何辦法隱藏在Chrome工具欄,但你可以試試這些腳本:

tell application "Google Chrome" 
    open location "http://example.com" 
    tell window 1 to enter presentation mode 
end tell 
tell application "Google Chrome" 
    tell (make new window) 
     set URL of active tab to "http://example.com" 
     set bounds to {0, 22, 1200, 900} 
    end tell 
    activate 
end tell 
tell application "Safari" 
    make new document with properties {URL:"http://example.com"} 
    tell window 1 
     set bounds to {0, 22, 1200, 900} 
    end tell 
    activate 
end tell 
tell application "System Events" to tell process "Safari" 
    tell menu "View" of menu bar 1 
     if exists menu item "Hide Toolbar" then click menu item "Hide Toolbar" 
     if exists menu item "Hide Status Bar" then click menu item "Hide Status Bar" 
     if exists menu item "Hide Tab Bar" then click menu item "Hide Tab Bar" 
     if exists menu item "Hide Bookmarks Bar" then click menu item "Hide Bookmarks Bar" 
    end tell 
end tell 
+0

FWIW'告訴視窗1套界限爲{ 0,22,1440,900} end tell'將在macbook air上將新窗口設置爲全屏,因爲1440x900是設備的屏幕分辨率。 –

+0

非常詳細的答案!謝謝。我使用第一個例子 - 簡單的 - 在Chrome上運行JavaScript。謝謝! – nurxyz

相關問題