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_snapWeb

options: view full snippetsend to code collector
-- This script launches LittleSnapper
-- <http://realmacsoftware.com/littlesnapper/>
-- and tells it to snap the current web page

-- By Adam Merrifield <http://www.seydoggy.com>
-- r4 10-08-09 08:12 (removed delays)

tell application "LittleSnapper" to activate
tell application "System Events"
	tell process "LittleSnapper"
		click menu item 1 of menu "Capture" of menu bar 1
	end tell
end tell
	
(Continues...)