InDesign--Image--bounds

Hi

How can I store Image bounds in a variable. I want to get bounds of image in a variable. How can I do it.

Please suggest.

Macrajeev-
Not sure if this is what you’re looking for, but this will give you the geometric bounds for any objects selected on your document:

tell document 1 of application "InDesign"
	set imageBounds to geometric bounds of selection
	return imageBounds
end tell

slimjim5811