I found a script that Rick Quatro sent out as a Thanksgiving present in 1999. It deletes paragraphs that are truly empty (do not contain any markers). The...
Steve, There is a bug in some Word import filters that leaves a line feed character (13) at the end of each paragraph. Here is a script that will remove them....
Rick Quatro
frameexpert@...
Mar 1, 2006 5:31 pm
6785
Oops I need to check it but it may have something to do with the name of Frame paragraph styles containing accents (in French). When in Japanese regional...
Hello, I solve one problem and another appears :-( .... Context: I am working on Japanese documents with Framemaker 7.1, running on a machine with Japanese...
Hello, I am so sorry. I have just realized this morning with the digest that I sent my message to the wrong list. This was originally aimed at FrameUsers ! ...
Hello Scripters. I want to change the bottom cell border. But this code does not work. //======================= Get Object Type(RulingFmt) Name('Mittel')...
This code works for me: Set tblMain = SelectedTbl; Get Object Type(RulingFmt) Name('Double') NewVar(rfMittel); Loop ForEach(Cell) In(tblMain.LastRowInTbl)...
Rick Quatro
frameexpert@...
Mar 2, 2006 11:44 am
6790
Hi there, I have a simple task: I would like to select the complete Text of a given paragraph (vPgf). How can I do that? Thanks, Best regards, Ralf...
Hello Ralf, ... Complete Paragraph: Set vDoc.TextSelection = vPgf.TextRange; Only the text of the paragraph: New TextRange NewVar(vTR) Object(vPgf) Offset(0)...
Ralf, With FrameScript 3.1 and higher, you can use Set PlatformEncoding = True; at the beginning of your script. With older versions of FrameScript, you need ...
Hi there, Is it possible to insert Text from the Clipboard without ist Format? Like choosing EDIT - INSERT SPECIAL - AS TEXT ONLY? Thanks! Best regards, Ralf...
Good Morning, I figured out how to find a Pgf that has a PgfFmt override. And I know how to make a message box that lets you continue or exit. What I want to...
I'm writing a script that I want to add a marker in every paragraph of a specified name then at the point where the insertion cursor is add xrefs to all of...
I am doing some refactoring of my EDD and need to edit the attributes of the elements being affected. I want to automate this process using framescript. I am...
Is anyone aware of a way to multi-thread a framescript script? Or perhaps I am asking the wrong question... in order to achieve the goal of having scripts run...
Framemaker 7.0p578 FrameScript 3.1r4 (for development) and 3.0r1 (for deployment) I'm creating a new paragraph format. I can set the LineSpacing of the format...
Hello Eric, ... The GUI "Line Spacing" is the sum of the font size and the leading, e.g.: Font Size: 10pt + Leading: 2pt => Line Spacing: 12pt To set the line...
Thanks Klaus! This means the originally setting of Line Spacing was 4 after all, not 2. After writing the original message I started to tinker with the ...
Hello Fred, ... The members of attribute lists ("gvTypeVal") are attributes. These are "FrameMaker specific data types" with specific sub values. Excerpt from...
There might be an easy and elegant way to do this, but it escapes me. I want to change the default left and right master pages in a document to match another...
I have docs in my book that have on the first page anchored frame. In that anchored frame there is a text frame. I want to find the first paragraph within the...
Hello Steve, ... If the anchored frame is not located in the main flow of the document, you need to loop through all paragraphs of all text frames on the first...