FrameMaker select paragraph
FrameMaker select paragraph
- Subject: FrameMaker select paragraph
- From: Dieter May <email@hidden>
- Date: Sun, 28 Jan 2001 16:11:58 +0100
Hello,
FrameMaker 6.0. I have a problem to set a
propertie to an entire paragraph. The scirpt
below change every text in the para, but
how can I change the last sign the "\r" (CR) too?.
Can somebody help?
tell application "FrameMaker 6.0"
tell text flow 1 of active document
set np to count paragraphs
repeat with p from 1 to np
if paragraph tag of paragraph p is "Headline2" then
set conditions of every text run of paragraph p to "Note"
end if
end repeat
end tell
end tell
--Dieter