Toast and OS X
Toast and OS X
- Subject: Toast and OS X
- From: Doug Borngasser <email@hidden>
- Date: Tue, 24 Sep 2002 11:47:13 -0700
I have some scripts that I use to archive data onto CD's when enough
data is collected. Under OS 9 I could call Toast and burn the CD
unattended and then send myself an email to come pickup the CD.
I have now moved that server to OS X and want to continue archiving
my data to CD's.
Now when my scripts call the CD burn, Toast throws up the burn disk
box and waits for someone to push either write session or write disk.
So until I get this fixed, I have the script email me about the disk
burn and I come and push the buttons to get it through.
I called Roxio about this, but their response was "Toast does
Applescript, but we don't really support it" and the support person
would forward my question to a developer. That was weeks ago.
Here is the burn part of my script (taken from one of their example
scripts with very little modification)
tell application "Toast Titanium 5.1.4"
activate
tell (make new ISO 9660 disc)
set iso format to CD XA
set iso naming to Allow Macintosh Names
set append version numbers to false
set use Apple extensions to true
set resolve aliases to false
end tell
set simulation mode to false
add to current disc items alias SetFolder
try
with timeout of 20000 seconds -- 3 hours for burn
write current disc
end timeout
end try
quit saving no
end tell
4
Doug
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.