groups

name language licence
UniqueID AppleScript GPL 2
LaunchTaskApps AppleScript Other
LittleSnapper_snapWeblet AppleScript Other
Split First Name - Address Book AppleScript Other
LittleSnapper_snapWeb AppleScript Other
check_safari_page_loaded_handler_js AppleScript Other
Delete Nameless Entries - Address Book AppleScript Other
Cleanup @ Entries - Address Book AppleScript Other

< 1 2 3 >



language: AppleScript
licence: Other

LittleSnapper_snapWeblet

options: view full snippetsend to code collector
-- This script finds out which browser is running
-- gets it's URL and sends it to LittleSnapper
-- and tells it to snap that address

-- By Adam Merrifield <http://www.seydoggy.com>
-- r1 10-08-09 16:15

set appArray to {"Safari", "Firefox", "Opera", "Camino"}
repeat with appName in appArray
	if application appName is running then
		tell application appName to activate
		tell application "System Events"
			keystroke "l" using {command down}
			keystroke "c" using {command down}
		end tell
	
(Continues...)