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


Click here to return to the 'Render iDVD '08 Projects In Bulk' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Render iDVD '08 Projects In Bulk
Authored by: Sesquipedalian on Sep 08, '08 09:34:12AM
Rather than manually editing the script every time, use this modified version to be presented with a dialog box where you can choose the iDVD projects you want to burn.

set projectstoburn to (choose file of type "BNDL" with multiple selections allowed) --"BNDL" is the file type code for iDVD projects
tell application "iDVD"
	repeat with i from 1 to count projectstoburn
		with timeout of (24 * 60 * 60) seconds -- 1 day
			open project path (POSIX path of item i of projectstoburn)
			start disc image burn path (POSIX path of item i of projectstoburn)
		end timeout
	end repeat
end tell


[ Reply to This | # ]
How would I do it as a Dropper ?
Authored by: igor on Sep 08, '08 07:10:44PM

I'd want to filter out anything that is NOT a project file



[ Reply to This | # ]
Good idea, but…
Authored by: ilikeimac on Sep 08, '08 08:02:20PM

The "start disk image burn" command should be followed by the name of the disk image file to create, not the name of the project file.



[ Reply to This | # ]