Hi Scripters. Is there a limit to the amount of information one can store in the UserString property of a document? Thanks. Maman/Mutti/Mom PS Extra dessert...
254 or 255 characters. - Michael ... -- _______________________________________________________________________ Dipl.-Ing. Michael Müller-Hillebrand...
Hi all, I need a script which loops through all documents of a book and changes any text tagged with certain conditions to normal text (without the condition)....
Hallo Frank, i have written a little script for changing conditional formats in a doc or a book. Kind regards, Karsten Natebus Dipl.Ing.(FH), EMD ... Brückner...
Hi Karsten, Thank you for your script which is extremely useful, though not exactly for what I want to do currently. What I need is a script which removes the ...
Frank, Take a look at this chapter from Rick Quatro's excellent FrameScript: A Crash Course (highly recommended). It should point you in the right direction. ...
Hi All, I would like to copy a paragraph format from a table cell and paste it into another table cell. The Background: I would like to copy all cell para...
Hi All, I would like to copy a paragraph format from a table cell and paste it into another table cell. The Background: I would like to copy all cell para...
I can set the volume number for each file, but I also need to set the volume number for the book (the same as seleting all files in book, right-clicking,...
... There is only one type of volume number for each document = book component. - Michael -- ____________________________________________________________ ...
Is there such a thing as a column object in FM script? I'm trying create a loop that looks for a particular paratag at the top of each column. If it finds...
3795
Marcus Streets
marcus@...
Jun 6, 2003 2:46 pm
... The loop you are looking for is: Set displaying=0; Set reformatting = 1; Loop ForEach(SubCol) In(IndexDoc.MainFlowInDoc.FirstTextFrameInFlow) ...
I'm looking for a way to list text insets in a book along with their full paths. Is there a way to do this in Framescript? Wade ... C. Wade Courtney Sr....
Is it possible for FrameScript to access the book's Numbering Properties (right-click on the book, then click Numbering)? I need to set the book's volume...
... The book itself doesn't have numbering properties. You can't right-click on the book and select Numbering; it isn't available. When the book file is...
Hi Richard, ... of a _file in the book_ in two different places: (1) in the file itself, by selecting Format > Document > Numbering, and (2) from the book...
this is a simple way to list all ti's in a fm-book. If ActiveBook Set vCurrentBook = ActiveBook; Run OpenAllComponentInBook; Else leavesub; EndIf //***[Alle...
dick_girard wrote: <snip> volume numbers, I don't consider them to be the same. So I refer to ... <snip> ... But the semantic difference causes the confusion....
... property (p. 167 of the FSL Reference). As I said, it's not a property of the book, but of the _files in the book_, so you have to set it for each file in...
I may be overlooking something obvious, so I thought I'd better ask before I spend any more time on it. Is there any reason why this script to convert manual...
You should be able to get it to work. I assume you are looping through each book component and then openeing the component and processig the file. I have...
Dick, You should be able to do what you want if you modify the BookComponent object properites and the Document properties appropriately. I've added two small...
Hello Rick, ... I assume that you missed adding the "DocObject" parameter to some commands. When working with an ActiveDoc, this is not necessary, but when...
Hi. I want to open a palette and specify its location on the screen. I have been unsuccessful thus far. Below is my code. Can anyone tell me what code...
... Thanks, Klaus. I took a look at the updated version, and I found the places where I forgot to make changes. For example, I didn't specify a flow to check...
Hi Dave, Thank you for your input. Based on your sample code, I was able to figure out why my script wasn't setting the book's volume number. I was using the...
Mom, ... If vPalette is a valid document variable, your code should work. You can also specify ScreenX(700) ScreenY(100) within the "Open Document" command. ...