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

LaunchTaskApps

options: view full snippetsend to code collector
-- LaunchTaskApps
-- this script will prompt you for a range of task you might perform
-- based on your selection it will then open those apps you
-- associate with those tasks

-- By Adam Merrifiel <http://www.seydoggy.com>
-- r3 10-09-09 14:26

-- define the sorts of tasks you wish to activate multiple apps for
set taskArray to {"Surfing", "Media", "Designing"}

set taskName to {choose from list taskArray with prompt "Pick your process:"} as string
set toDoArray to {"Launch apps", "Quit apps"}
set toDoResult to {choose from list toDoArray with prompt "Would you like to launch or quit these applications?"} as string

	
(Continues...)