Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Put image/video inside secure notes in Keychain' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Put image/video inside secure notes in Keychain
Authored by: designr on Mar 01, '14 05:33:52PM
set diskName to "YourDiskNameHere"
tell application "Finder"
	eject disk diskName
end tell
or
set disksList to {"Disk 1", "Disk 2", "Disk 3"}
tell application "Finder"
	repeat with i in disksList
		eject disk i
	end repeat
end tell


[ Reply to This | # ]