Hi all, I use a script which prepares FrameMaker books for processing with WebWorksPublisher. After importing styles into the book, the script updates all...
Hello Klaus, Thank you for your quick help. Regards, Frank ... You need to Set vBookComp.GenerateInclude = True; for all generated book components before...
Will FrameScript 3.0 run in Framemaker 7.1? I sure hope so. I had to do enough kicking and screaming to upgrade to 7.1. (Well all four Adobe's, Photo, Illus...
Bill, Yes FrameScript 3.0 will work with Frame 7.1 (and FS 3.1 will work with FM 7.0) IXGen is a marvellous tool for making indexes easier to create and...
Hello Bill, ... If you are currently using IXgen 5.5 and FM 6.0, you might not want to use it with FM 7.1. See the notes from Frank Stearns below. Additional...
I recommend that you upgrade (free from 3.0) to FrameScript 3.2. It contains some bug fixes and a few new features. Rick Quatro Carmen Publishing 585 659-8267 ...
Rick Quatro
frameexpert@...
Apr 1, 2005 2:29 pm
5963
I will check into the upgrade. Now for the other part of the story. Someone broke into our building, and permately borrowed over 25 computers, and of course...
Last night I discovered an undocumented feature in FrameScript that I want to share with the community. The documentation for Find String says that you must...
Hi, I experienced an error while running the script below. The error is "FrameScript: Invalid Option(('select count(*) from customers')) on command (Select)" I...
Hello Mom, the select command is not allowed in the New EQuery statement. Use the following syntax: New EDB DataSource('XXXX') NewVar(vDB) User('user')...
Hello all, I am looking for a utilty or a script for global font replacement in FrameMaker (or MIF) files. Especially for replacing western fonts by CE fonts,...
I have FM 7.1 and FS 3.2... Anyone see this problem before? I create a new document, then a new table with one heading row and one body row. Later, I add large...
Wim, I have done this for my own use (for template development), so it is not ready for passing it on. Please be aware, that additional things have to be...
Hi, I am writing a framescript that will modify the way Framemaker saves backup files on save. I have some of the script written; I was just wondering if...
I have written a FrameScript that saves all FM files in a directory as XML. On saving the XML files, sometimes I get FrameMaker messages, such as "character...
Hello Scripters, I am trying to rename a Reference page that has more than one page. For example, the HTML reference page in a standard Portrait document...
Rick Quatro
frameexpert@...
Apr 12, 2005 2:26 pm
5974
Hello Rick, ... The reason for those continued pages is a text frame on that pages with a named & autoconnected flow. One possible solution to rename such...
Thanks, Klaus. That is excellent! Rick ... From: Müller, Klaus To: framescript-users@yahoogroups.com Sent: Tuesday, April 12, 2005 11:29 AM Subject: RE:...
Rick Quatro
frameexpert@...
Apr 12, 2005 3:40 pm
5976
Rick, The posted script won't work, if the first graphic on the page is not the connected text frame. ... Because vGraphicNext is not specified, this must be ...
Mark, To change FrameMaker's default behavior when saving as XML (it is described in the Structured FrameMaker Developer's Guide) you have to create a...
Hello Scripters, I have a modeless dialog box that I am using as a floating "palette," similar to the paragraph or character catalog. I am using an EListBox ...
Rick Quatro
frameexpert@...
Apr 13, 2005 7:05 pm
5979
Hello Rick, ... Set lstPgfFmts.SelIndex = 0; doesn't seem to work. Instead, you could reapply the strings to the list box. Set lstPgfFmts.Strings =...
Thanks, Klaus. I will give it a try. Rick ... From: Klaus Mueller To: framescript-users@yahoogroups.com Sent: Wednesday, April 13, 2005 3:38 PM Subject: Re:...
Rick Quatro
frameexpert@...
Apr 13, 2005 7:44 pm
5981
Hello Rick, use the clear-methode for deleting all strings in the elistbox and then add a stringlist with the strings-property. Best regards karsten...
Rick, ... Instead of looping through all formats of the document, this undocumented document property is much more easy. I recently scanned the fsl3_70.dll...
Hello Jim, The easiest way to replace variables is the following: Set vDoc = ActiveDoc; If (not vDoc) LeaveSub; EndIf Set vVarNameSearch = 'MyOldVarName'; Set...