We have a workflow system in which we download a Quark document from a server to a local Mac and set the image of a picture box to a certain path. In Quark 2015, picture usage is showing the status of the picture as modified because when we set the image path the modification date is not being updated. In Quark 7, when we set the path, the modified date of the picture is updated automatically. Below is the gist of the script. Anyone have any ideas how to get the modified date to update automatically in Q2015? Of course, the users can just update picture usage manually but this isn’t practical in our workflow. Thank you in advance for any help!
tell application “QuarkXPress”
tell document 1
tell picture box 1
set ThePath to "MacHD:Workflow:filename.eps"
set ThePath to ThePath as alias
set image 1 to ThePath
end tell
end tell
end tell