View Single Post
Quote:
Originally Posted by RobTrew View Post
I've seen that once, but it didn't recur on my system - possibly some kind of timing issue.

The script does two things:
  • Tries to save the OO3 file in a temporary folder
  • Then imports it from the temporary file into DT2

The location of the temporary folder which it tries to use is determined by the line near the start of the script:
Code:
property strTempFolder : (path to temporary items folder as string)
It may be that Applescript sometimes hasn't retrieved a reference to the temporary items folder in time, or conceivably that there are permissions problems in writing to it.

I would begin by editing the line above to
Code:
property strTempFolder : (path to documents folder as string)
and then seeing if the problem persists.
It works fine now! Thanks a lot for your great work!!