Hi There, I was wondering if anyone has used framescript in conversion of word document to structured xml document with the read/write rules and styles. I...
... I cannot imagine what you want to do: Open a Word document in FrameMaker and then use Read/Write Rules to structure the file? No, that is not possible......
In post 2829 (Sept. 2002), Simon Bate talked about running a batch script externally to create a directory listing to use in FrameScript. It's been a couple...
Here is one way you can do it with a single script. 1) Create a string list, i.e., sGraphicsInUse. 2) Loop through all of the FrameMaker documents and their...
Rick Quatro
frameexpert@...
Nov 4, 2004 12:21 pm
5563
... FrameMaker and then use Read/Write Rules to structure the file? No, that is not possible... More details needed. ... Michael, Yes, thats true what you...
Srikanth, If you are new to FrameMaker you should get professional coaching to master this task. * Read/Write rules work only when opening XML files with...
Yes, you certainly can. If I recall correctly, the batch script was the basis for an earlier version of a script that does just what you were thinking of...
... master this task. ... or when saving structured FrameMaker documents to XML. ... applying a structure to unstructured FrameMaker documents; you will find...
Thanks Rick, Your comments prompted me to look a little deeper at the ESL Object Reference manual, and there was an example of how to get a list of all the...
... I have no method to recommend, this was just to show the possible ways. I am a FrameMaker expert and you may have to ask Word experts for this. - Michael ...
I've recently tested a script on another PC that came up with the following error: FrameScript: Run Error (Read Only Variable) on command (New) The line in the...
Hi Rick, Check whether the vESystem variable is used in their initial script without being declared as Local: "Variables created in the initial script (see...
... ways. I am a FrameMaker expert and you may have to ask Word experts for this. ... Michael, anyways Thank you for your input, I will try and keep you...
Hi Alex, Here's the script. To run the script, have a book file open and active. The script prompts you for the location of the book's art folder. Any art...
__________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com...
I know you can use a recursive subroutine to cycle through elements in a structured FrameMaker file. However, if I use the following paragraph-based looping...
Hello, ... a structured FrameMaker file. However, if I >>use the following paragraph-based looping method, can FrameScript determine what element the para is...
Hello Bill, Try this code. The code is not fast but functioned. Set objDoc = ActiveDoc; Set vPgf = objDoc.MainFlowInDoc.FirstPgfInFlow; Loop While(vPgf) Set...
Hi, I have a problem that I can't seem to get a handle on. It seems that if you save all files in a book, it remembers those files that were minimized and...
When you open your book component, make sure you assign a variable to it using the NewVar parameter. Then use this variable on the Get Object command. Open...
Hi all, Does anybody have a script which allows me to change the font used in all character and paragraph styles in a document (or better: book)? Ideally, the...
Hi all, I am relatively new to Frame script. I need to change all the headings in my book from title case to sentence case. Is there a script that already...
I want to toggle the changebars on and off. In my scripting, I've noticed that there seems to be two different types: one is assigned via character tag, the...
Hello Rick, ... If I understand you correct, you want to "reverse" all existing changebars? Could you tell us the background for this? ... There are three...
Hello Yael, ... To loop through your book components, you can start with the following routine: Set vBook = ActiveBook; If (not vBook) LeaveSub; EndIf Set...
Thanks Klaus! This helps alot, thanks! The idea for the script is that we want to use the changebars to flag changes in the documents so that the engineers...
Hello Rick, ... So you do not really want to *toggle* those changebars. But then, if you remove existing changebars (which could be done easily via "Clear All...