Purpose of script is to find the group, get the bounds, delete it, then replace it with spanish version grouping. The only problem is when moving the spanish version from a library and moving it the bounds i got from the english version the spanish verison is off by .0067 on both coordinates. Why is that? Shouldn’t it be placing it in the excact same location?
tell application "Adobe InDesign CS4"
activate
tell document 1
set itemList to every item of all page items whose label is "Ass 16"
select itemList
set imageBounds to geometric bounds of selection
set x to item 2 of imageBounds
set y to item 1 of imageBounds
delete itemList
end tell
set assetPlacer to place asset asset "Test" of library "RepSpan.indl" on active document
move assetPlacer to {x, y}
end tell
Thanks in advance