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


Click here to return to the 'Bulk convert DMGs to 'Internet enabled' format' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Bulk convert DMGs to 'Internet enabled' format
Authored by: ultimanine on Mar 22, '03 06:57:16PM

Expanding on your AppleScript droplet:

on open fileList
repeat with thisFile in fileList
set shellCommand to "hdiutil internet-enable -yes "¬
& quoted form of POSIX path of thisFile
do shell script shellCommand
set shellOpen to "open -a '/Applications/Utilities/Disk Copy.app' "¬
& quoted form of POSIX path of thisFile
do shell script shellOpen
end repeat
end open

This one converts the image(s) and then opens the image in Disk Copy. If you want, you can set all your .dmg files to open with this droplet, so all your downloaded images are automatically converted to the Internet Enabled format and then opened.

(Note,

---
Macs and music:
saviors of society



[ Reply to This | # ]