Hi All,
I have developed a program for take copy and paste content of a text box to another file.
tell application "QuarkXpress"
activate
set the_File to choose file with prompt "Please choose \ "Quark\" File" of type {"XDOC"}
open the_File
set the_txtbx to text box 1
select the_txtbx
copy content of the_txtbx
set temp_file to make new document at desktop with properties {automatic text box:true, name:"Temp.qxd"}
activate temp_file
select text box 1
paste
end tell
But it shows the error in the Copy syntax.
Thanks,
Rajeev