14 lines
No EOL
323 B
AppleScript
14 lines
No EOL
323 B
AppleScript
on run argv
|
|
do shell script "defaultbrowser " & item 1 of argv
|
|
try
|
|
tell application "System Events"
|
|
tell application process "CoreServicesUIAgent"
|
|
tell window 1
|
|
tell (first button whose name starts with "use")
|
|
perform action "AXPress"
|
|
end tell
|
|
end tell
|
|
end tell
|
|
end tell
|
|
end try
|
|
end run |