Published in: AppleScript
unmount Samba disk named "SHARE" if we have mounted it
tell application "Finder" if exists "SHARE" then eject "SHARE" end if end tell
You need to login to post a comment.
Beginning AppleScript (Programmer to Programmer)
Geared toward programmers with no prior development knowledge, Beginning AppleScript serves as a comprehensive guide to using AppleScript on the Mac OS X platform. This title introduces the reader to AppleScript, and then illustrates how to efficiently start writing scripts through sample programs as each concept is introduced.
katz on 07/09/06
6 people have marked this snippet as a favorite
Roshambo
splorp
jpb
vanne
Caliban
kellyharding
Published in: AppleScript
unmount Samba disk named "SHARE" if we have mounted it
tell application "Finder" if exists "SHARE" then eject "SHARE" end if end tell
You need to login to post a comment.