Droplet for CD
Droplet for CD
- Subject: Droplet for CD
- From: "Sprague, Graham" <email@hidden>
- Date: Wed, 19 Sep 2001 10:57:09 -0400
I need to create a droplet that will only accept a CD. Does anyone know how
to do this. I tried the following to no avail...
Any help would be great.
Thanks,
Graham
on open these_items
repeat with i from 1 to the count of these_items
set error_index to 0
set this_item to item i of these_items
set item_info to the info for this_item
set item_name to the name of the item_info as string
set item_path to this_item as string
if (disk of the (info for this_item) is true) then
try
tell application "Extensis Portfolio 5.0.1"
activate
catalog alias item_path to gallery
"Untitled.fdb - Untitled"
end tell
on error
display dialog "An error occured trying to catalog "
& item_path & "."
end try
end if
end repeat
end open