-- Saved Settings Droplet -- https://c-command.com/scripts/dropdmg/saved-settings-droplet -- Summary: Saves a collection of DropDMG settings into a droplet. -- Requires: DropDMG 3.x -- Install Location: -- Last Modified: 2019-05-24 on open _files repeat with _file in _files tell application "DropDMG" -- Create a basic compressed disk image using the layout named “Test” create from file _file format zlib compressed layout name "Test" -- Create a disk image using the layout named “Test” and using the value “NAME” for the “APP_BASENAME” placeholder in the layout. create from file _file layout name "Test" APP_BASENAME "NAME" -- Create a disk image using a configuration set up in DropDMG’s Preferencs window. create from file _file configuration name "My Configuration" -- Create an encryped disk image. The passphrase is stored directly in the script, rather than in the keychain. create from file _file format bzip2 compressed encryption AES 256 passphrase "your passphrase" -- Create a ZIP archive on the desktop. create from file _file format zip archive destination (POSIX file "/Users//Desktop") end tell end repeat end open