Quark 6.5, Opening a template and saving to a document

Hi all -

When I use applescript to open a template, then save the document, it resaves it as a template.

Maybe there’s something I’m missing here, this is the line to save the file:

close document 1 saving in save_file_path & new_file_name

Where save_file_path is the filepath to save the file to, and new_file_name is the name of the active layout.

Is there something I’m missing, or is this possibly a bug?

this may helps:

tell document 1
save in save_file_path & new_file_name without template
close
end tell

greets
TMA

That worked perfectly. Thanks, TMA!