-- Burn -- https://c-command.com/scripts/dropdmg/burning -- Summary: Demonstrates how to burn discs using AppleScript. -- Requires: DropDMG 3.0 -- Install Location: -- Last Modified: 2019-05-24 tell application "DropDMG" -- burn MyFolder to disc burn file or folder (POSIX file "/Users//MyFolder") -- burn the contents of the myImage.dmg image to disc burn disk image (POSIX file "/Users//myImage.dmg") end tell