InDesign CS2:

Ok, so this used to be reeeal simple in CS, but Adobe went and restructured things for CS2 without giving any leads as to how. Anyway, I’ve got this simple package routine as part of a larger script, but can’t get it to work now.

It wants parameters set for the package command, but won’t let me add them in the way I know how. Anybody know what I’m doing wrong?

tell application “Adobe InDesign CS2”
set Temp to choose folder with prompt “Where would you like to save your files?”
set SavePath to result
set FileName to “XXX061234_MyCrap”
set myDoc to active document

set myPackage to package myDoc with properties {copying fonts: true} to (SavePath & FileName) as string

end tell