Hello! I'm just getting started with understanding FrameScript. Thanks to some excellent resources and questions in this list, I've gotten a lot of my...
... FrameMaker does not have a built-in mail merge facility the way Microsoft Word does. I suppose it's possible that you could script something using ...
There are any number of ways to do this. You could use variables for the "fields" in the document that need to change from letter to letter. Then a script...
Rick Quatro
frameexpert@...
Feb 5, 2007 2:28 pm
7420
Hm. Well, actually I'd like to do is: 1. Find each instance of a character format in a document. 2. Determine if that instance has a space at its beginning or...
Hi, I can get to the the first Pgf in a cell and the last Pgf in a cell. How do I get to next Pgf in a cell when there are more than 2? Paul Schnall Mitzpeh...
Hi Paul, You can navigate cell paragraphs like you do flow paragraphs. Set oPgf = oCell.FirstPgf; Loop While(oPgf) // do something with the paragraph. Set oPgf...
Rick Quatro
frameexpert@...
Feb 7, 2007 3:09 pm
7423
Rick, Thanks! Paul S Paul Schnall Mitzpeh Netufa From: "Rick Quatro" <frameexpert@...> Reply-To: framescript-users@yahoogroups.com To:...
Hello, I'm very new to FrameScript, and am currently researching it to see how it might benefit my company. One of the challenges I'm facing is understanding...
I'm sure I'm just being dumb, but is there a way to determine if the activedoc has been switched to another document? I have a modeless dialog showing a...
Hello, you can doing this with the NoteBackToUser event and the Label propterty of the documents. Event NoteBackToUser Set gv_objActiveDoc = Session.ActiveDoc;...
Hi Guys, I want to quickly nuke a couple of marker types from a bunch of files. If I just kill the marker type, I get a dialog that asks if I really want to...
Hello Dave, ... Take a look at the "Get TextList" command in the FrameScript command reference. With this command, you can locate formatting, anchors, ...
Hello- I'm loading a stringlist, and I display the items in an EListbox. My problem is that I'm not sure how to set the form and list box height to conform to...
If you delete a conditional marker all of the text set with that condition is also deleted. So be careful. "This email message and any attachments are...
Hi all, I wonder whether it is possible to check all nodes in an ETreeCtrl with CheckBoxes(True) on creation (OnInitForm) or later by code. There are the...
Hi everybody, I have just began writing scripts with framescript and I can need all help with my current one. My script needs find certain characters and...
Not me! Sorry, that's way way beyond my skill level in FrameScript. And I'm stuck in projects that are all using Word right now, sigh. Keith -- Keith Soltys ...
Is there a quick way to exit a script from a subroutine? LeaveSub just gets you back to the main script, which goes merrily on its way. I ended up returning a...
Hi Fred, There is a LeaveScript command, but I never use it. I have heard that it has been buggy, although that is supposed to be fixed in the lastest...
Rick Quatro
frameexpert@...
Feb 14, 2007 3:20 pm
7439
Hello Fred, LeaveScript does not work correctly if the Subroutine is called from within a Loop. This is not fixed yet (FS4.1R1), but probably will be fixed in...
Opportunities For Great Technical Writers at VMware! VMware, a Palo Alto-based company, is looking for great Technical Writers join our team! We are looking...
Is it possible to open all documents in a book so they open with the Master Page showing? or Is there a way to search for Unresolved Crossreferences in Master...
I have a massive document set, 25 books, 3500 files, which is full of inconsistencies. We are doing the following: 1. delete all the old para and char formats ...
Hello William, Â Is it possible to open all documents in a book so they open with the Master Page showing? yes, this is possible. Try the following code: ...