HI! I need to go over a document by part after part by the order that is seen on the screen (and not by the order that it was created). how can I do it? The...
744
Michael Mueller-Hille...
info@...
Feb 1, 2001 11:25 am
Have a look at Phil Sharman's script that illustrates several ways to go through a document: http://members.home.com/philip.sharman/FrameScripts/my_scripts.htm...
745
Antje Reeker
reeker@...
Feb 1, 2001 2:13 pm
Hi, I mailed this question about a week ago to the list, but didn´t get any answers. Reading about Phil Sharman´s script I thought this would be an answer to...
746
Michael Mueller-Hille...
info@...
Feb 1, 2001 2:42 pm
The method Loop ForEach(Pgf) In(ActiveDoc) gets _all_ paragraphs but unfortunately this is not what you want. You could: * Loop through all pgfs in the doc and...
747
Michael Mueller-Hille...
info@...
Feb 3, 2001 9:47 pm
Another silent update for everyone who cares :-) From the release notes: The following bugs have been fixed in this release. * Read textfile fails to read the...
748
thomas.rahlf@...
Feb 5, 2001 7:49 pm
Hello, I have a simple problem: I want to cut and paste all footnote-texts to the position of the footnote number. Example: ...
749
hedley_finger@...
Feb 5, 2001 10:14 pm
Script fiddlers: I want to add an Appearance menu item to the View menu just after the Body Pages item. This is to run a script which will switch between...
750
hedley_finger@...
Feb 6, 2001 12:28 am
Script fiddlers: I want to add an Appearance menu item to the View menu just after the Body Pages item. This is to run a script which will switch between...
751
Pages Plus (Don Assen...
pagesplus@...
Feb 6, 2001 4:35 am
Yes it is. If you would like a sample please contact me separately and I will send you one. Took me a while to figure it out. Sometimes things are too obvious....
752
Rick Quatro
rick@...
Feb 6, 2001 5:07 pm
Hello Scripters, Can FrameScript for the Mac use an Initial Script like the Windows version? Is there an .INI file where you set the path? Thanks in advance. ...
753
Michael Conner
michaelconner@...
Feb 6, 2001 5:35 pm
... Yes. After you start FM, go to the Options in the FrameScript menu. You can set the initial file there. I just keep mine in the Modules folder, so there is...
754
hedley_finger@...
Feb 6, 2001 9:34 pm
... calls ... PDF ... you ... You old teaser, you! Let us ALL in on the secret ... . By the way, can you help me with my main problem: why the Appearance...
755
Pages Plus (Don Assen...
pagesplus@...
Feb 6, 2001 10:46 pm
Hedley Sample code for multi level menus is listed below. Also this needs to be run from an installation script(also below). ////////////***************event...
756
hedley_finger@...
Feb 7, 2001 3:47 am
Don: Thanks. I didn't realise that you could create a Menu object and install it in another menu. Also, my script probably failed because I was trying to...
757
dsalis@...
Feb 7, 2001 9:42 am
HI! I need to run over a two documents flow by flow by the order that is seen on the screen (and not by the flow ID), I also need to run in the flow itself on...
758
Simon Bate
sbate@...
Feb 7, 2001 9:33 pm
Hi, I've searched the archives for this, but haven't come up with anything...perhaps I'm using the wrong keywords. From time to time we need to make updates to...
759
reeker@...
Feb 8, 2001 9:16 am
Hi! I wrote a script that changes all text with conditions to unconditional text for all documents of a book. It works fine but at the end of each document I...
760
Michael Mueller-Hille...
info@...
Feb 8, 2001 10:02 am
Antje, it seems this message box is the normal answer of FrameMaker if you execute this special FCode or aktually hit the corresponding keys (This is Ctrl+6 I...
761
Antje Reeker
reeker@...
Feb 8, 2001 10:19 am
Thank you for your answer and pointing out the flow problem. I understand that the message box appears as an effect of the FCode and will think about the...
762
Eckhard Graf
EGraf@...
Feb 8, 2001 11:46 am
Hello, in order to re-format source code for our documentation, I need a FrameScript that goes through my document and replaces all Return characters (char...
763
Rick Quatro
rick@...
Feb 8, 2001 2:06 pm
Hi Eckhard, You cannot directly search for a paragraph return using a string variable. The following script works around this limitation. However, the script...
764
Rick Quatro
rick@...
Feb 8, 2001 2:14 pm
Antje, Here is a script that will make all of the rows in all of the document's tables unconditional. It does not use Fcodes. New IntList NewVar(vCondOff); //...
765
Robin Corcoran
Robinc@...
Feb 8, 2001 4:07 pm
I have a very simple script, shown below. My problem is that when I look at the frame document the text does not appear in the same order as it does in the...
766
Tim Meiers
Tim.Meiers@...
Feb 8, 2001 4:13 pm
Scripters, Is it possible to loop just within the paragraph containing the insertion point and not within _all_ paragraphs? For example, I want to open the...
767
Rick Quatro
rick@...
Feb 8, 2001 4:49 pm
Hi Tim, Below is a script that will work. // Loop through the list of markers. Loop While(i <= vTlist.Count) LoopVar(i) Init(1) Incr(1) Get Member Number(i)...
768
Rick Quatro
rick@...
Feb 8, 2001 4:52 pm
Hi Robin, Before the New Table command, make a new TextLoc at the end of the paragraph. Then you can use this TextLoc for the location of your new table. New...
769
Robin Corcoran
Robinc@...
Feb 8, 2001 4:52 pm
Already posted this, but forgot subject..... I have a very simple script, shown below. My problem is that when I look at the frame document the text does not...
770
Robin Corcoran
Robinc@...
Feb 8, 2001 5:06 pm
Thanks for the tip...but I was also wondering why the second paragraph I create appears before the first one. In the example (included again below), I would...
771
Tim Meiers
Tim.Meiers@...
Feb 8, 2001 5:35 pm
Thanks, Rick! Works great. Below is the final script for those interested. Tim ... // Script to open an index marker within the paragraph // containing the...
772
Rick Quatro
rick@...
Feb 8, 2001 6:11 pm
Hi Robin, Try adding the PrevObject parameter on your New Paragraph command. NEW Paragraph NewVar(currPgf) PgfFmtName('13-Country Name') ...