search and replace words in quark
search and replace words in quark
- Subject: search and replace words in quark
- From: "Reiner, Stefan" <email@hidden>
- Date: Fri, 29 Jun 2001 11:20:41 +0200
Hello list,
I try to search and replaces words in an quark-document. The words contains
only one character, because they belongs to a special symbol-font. In this
font the character "d" is an other symbol than the character "D". This is
the reason, why I have to replace only the lower case "d". With my script in
XPress will be both, the lower case "d" and the upper case "D" replaced.
I also tried to define by ascii character 100, but also both will be
replaced.
Has anybody an idea how I can make it work?
tell application "QuarkXPress Passport(tm) 4.11"
tell document 1
tell (every paragraph of every story whose name of style
sheet = "demo_style")
set (words where it is "d") to "v"
end tell
end tell
end tell
thanks!
Stefan