Ich habe dieses AppleScript für das Skript-Tool erstellt. Es kann als die Anwendung gespeichert werden, die mit einem Klick gestartet werden soll. Ich muss den Antrag allerdings im Security Edit Tool genehmigen.
Dies öffnet den privaten Browser durch Anklicken der Menüpunkte. Anschließend wird das erste Fenster geschlossen, indem im Menü Fenster nach der undenkbaren URL gesucht wird. Es funktioniert, ist aber auffällig, wenn sich die Fenster öffnen und schließen.
Ich wünschte, es könnte auf irgendeine Weise verbessert werden, indem man das Klicken auf die Verknüpfung zulässt und dann sieht, dass nur das Safari-Fenster im privaten Modus ohne so viel "Makro" -ähnliches Erscheinungsbild gestartet wird. Können Sie mir dabei helfen, dies zu verbessern?
# Start or bring forward Safari window
tell application "Safari"
activate
end tell
# Open a URL that cannot be found
set theURL to "http://localhost:38"
tell application "System Events"
tell process "Safari"
open location theURL
end tell
end tell
# Launch a new private window
tell application "System Events"
tell process "Safari"
tell menu bar 1
click menu bar item "File"
tell menu "File"
click menu item "New Private Window"
end tell
end tell
end tell
end tell
# Close the first launcher window
tell application "System Events"
tell process "Safari"
tell menu bar 1
click menu bar item "Window"
tell menu "Window"
click menu item "Failed to open page"
end tell
end tell
tell menu bar 1
click menu bar item "File"
tell menu "File"
click menu item "Close Window"
end tell
end tell
end tell
end tell