Rick, ... in order for relative links to work. It is a saved document (generated index) being already part of an existing book. From FM all links work...
Rick, now I found the solution, which is quite simple as the FS documentation showed (RTFM): Execute Hypertext Command(lvHypertextMarkertext); is now changed...
Hi, I'm building a paragraph catalog that allows you to group paragraph styles together and handles them as a tree (ETreeCtrl). Everything works fine except I...
Hello Zsolt, ... Unfortunately, there is no such event. Instead, you need to use Event NoteBackToUser, which "is run everytime anything happens in the ...
Hi, When editing some fsl files in Framescript Script Window Editor ( FM 7.0, FS 3.1R4, xp pro sp2 ) it seems that i'm limited to a size of file ( nearly 36Ko...
Hello Erwan, ... Depending on the FrameScript version, there are four different types of the "internal" editor (called with FrameScript > Script Window): A)...
Hello Adrian, ... - Create a new string list (vPgfFmtNameList) - Open all book components invisible - Loop through all paragraph format of each doc - Add the...
Hello Mark, I totally agree with Rick. In any case, you should prevent errors that might occur in advance. ... There is no such event in FrameScript. ...
I can't figure this out. I have some table cell paragraphs that writers have manually set to a center alignment, overriding the paragraph tag's left alignment....
Hello Rick, ... Instead of "NextPgfInFlow", use "NextPgfInDoc". Alternatively, you can use the Loop ForEach(Pgf) command (because you're not going to delete a ...
Hello Carey, ... If there are no other lines than those: No. If those six lines (removing that overrides) are a small part of a large script: Maybe. Kind...
A collegue of mine was observing string truncation when passing long (> 1000 bytes or so) queries to the FrameScript ODBC interface. Could it be that...
High, I noticed this bug a while ago. I use a free download editor "Context". I have found that the editor in Frame hangs up at 1000 lines of code. Paul...
Back at FrameScript after a while away, I've managed to adapt an earlier script so that it a) reads the colour definitions in the document; b) ignores colour...
After months of haggling with this snippet, that script, and these files, I have finally developed a basic process for converting Word files to FM files. This...
Hi all. I want to insert PDFmarks which will print a specific page, so I need the PDF page number of this page. The first PDF page is 0, next pages are counted...
Perhaps I need to see your code. It looks like there's some confusion between strings (which are FrameScript objects) and FrameScript variables. (That is,...
(Tried to send this message today from two different providers without luck. I apologize if it will show up multiple times.) Hello Niels, ... You created the...
Hello Niels, ... You created the check boxes applying a "Name" property. You can access control values directly specifying the "NewVar" variable, but to access...
... confusion between strings (which are FrameScript objects) and FrameScript variables. Confusion is always possible, and I'll happily admit to being new to ...
Hi everyone, I'm a bit programming-challenged, so please bear with me. I'm using FrameScript 3.2 R2 with FM 7.1. I'm trying to understand from Rick's...
Hi David, I guess there are two mistakes in line 2: Instead of Set vTbl = vCurrent.Doc.SelectTbl; Please use: Set vTbl = vCurrenttDoc.SelectedTbl; Regards ...
David, Take out the dot between vCurrent.Doc Set vTbl = vCurrent.Doc.SelectTbl; Also, you need SelectedTbl. So it would be Set vTbl = vCurrentDoc.SelectedTbl; ...
Rick Quatro
frameexpert@...
Jun 13, 2006 1:41 pm
6971
Thanks to Michael and Rick, I don't get the error message anymore. I apologize for not noticing a silly typing mistake. Unfortunately, I still don't achieve...
Hello David, ... "vTextLoc" is not a property of the table. "InTextOb" is mispelled. Use InTextObj; "vTextLoc.InTextObj" (in a table) is a cell object, not a...
Klaus, thank you thank you thank you! It's perfect! I just haven't caught on to the nuts and bolts of understanding what is a valid property or command, and...
Hello David, ... No: it is not: - In FrameMaker, create a table with a table title - Place the insertion point in the table title - Run the script: Set vDoc =...
Hi Klaus, That's interesting. It adds more heading rows above the table title. My first question was, is there any use for this beast? However, it doesn't ...