Getting attributes of dropped files

How do I get the size and date modified of dropped items?

This might help you to get started…

tell application "Finder"
	set x to choose file
	set y to get physical size of x as integer
	set z to get modification date of x
	y & z
end tell