Accessing Aperture Trash Pictures

Hi,
I am quite new to AppleScript. I am trying to automate my picture processing workflow.
I tried to get the names of the images in the Aperture trash, but I only thing I succeeded in so far is to get the container names. Can somebody tell me how I can get the names of the images?


tell application "Aperture"
	tell trash
		tell every container to get name
	end tell
end tell

Thanks,
Diddy

Hi Diddy,

I’m having the same problem. The following results in “can’t get every image version of trash.”

tell application “Aperture”
tell trash
tell every image version to get name
end tell
end tell

Have you had any luck with this?

Thanks,
Jon