I am fairly new to apple scripts can someone help. I have a textbox on my quark document with the words “Test”. I want to find the word test in my document and then a paste.
Another words something like a find and replace with the information on my clipboard
tell application “QuarkXPress™ 4.11”
activate
try
if not (exists document 1) then error "No document is open."
tell document 1
if «class PMAS» is true then error "This script doesn't work on master pages."
end tell
end try
end tell