Is there any way to mount an iso file with applescript? i’ve been searching quite a bit and couldn’t find anything… Any kind of help, or ‘tips and tricks’ would help…
Thanks!
~curt
Model: iMac G5
AppleScript: 2.1.2
Browser: Safari 533.19.4
Operating System: Mac OS X (10.4)
The Finder has the “open” command which will open any file with its default application. You can use that because if you open an iso image it will mount…
set anyFile to choose file
tell application "Finder" to open anyFile
You could also use the hdiutil command line tool but there’s no need to complicate things, the Finder can do it.
ok, thanks for the help! that did the trick! 