[InDesign] How can I get the modified date of my linked images?

May I know how can I get the modified date of my linked images in InDesign?
Compatible to “set theModTime to modification date of image 1” in Quark.

There is a “date” property but I am not sure if it is the original creation date or the modification date. You might want to experiment with it and see if it will get you what you want:

tell application "Adobe InDesign CS3"
	tell document 1
		get date of every link
	end tell
end tell

Alternately, you could get the link and then tell the finder to go get the modification date of the file once you have the link or alias.

Thank you for your prompt reply, Matt-Boy.
It works great now!