Thanks Eric, And a happy new year 2 U. My New Years resolution is to work in a more structured way, the results you provide speak for themselves. Cheers JWC ...
One of the causes of unavailable font messages is when FrameMaker creates phantom columns in table formats and adds font overrides to these columns. The only...
Simon, As far as I can tell, the paragraph formats that are used in a table format are not exposed to the FDK, and thus FrameScript. They must be somewhere in ...
Hi, I'm just starting to write scripts and got Rick's book just recently and that has been great! Thanks for a good job that has already made to able to wirte...
Hi all, Does anyone know where FrameMaker does store the separation settings for halftone screens (frequency, angle, dot)? It seems that this isn't accessible...
I am trying to remove underlined text in my documents. I don't have any paragraph or character formats that use underlining, so the formatting is manually...
Modify the New TextRange command: New TextRange NewVar(vMyRange) Object(pgfvar) Offset(0) Offset(ObjEndOffset-1); and remove the Execute command. Rick Quatro ...
Klaus As I know, these settings must be redefined for each section and remain in use until FM exit for all documents, but are not stored elsewhere. Furia ... ...
Klaus, Thanks for the thorough answer. I didn't know about the TextRange property on the paragraph object. It saves the step of creating the TextRange with the...
I'm not sure why, but that doesn't work either. The loop appears to work, but the underlining is not removed unless the text gets highlighted. ... have ... but...
That did it. Final code is: New PropertyList NewVar(vProps) Underlining(0); LOOP ForEach(Pgf) In(ActiveDoc) LoopVar(pgfvar); New TextRange NewVar(vMyRange)...
Hi Furia, Thanks for the feedback. I rechecked all (other) possibilities: But: That seems to be the facts. Kind regards (and a very nice 2003), Klaus...
Hi Klaus, Thanks for the reply and the code. This is almost exactly what i was wanting. I tried adding a few things that i wanted to ask you about. I wanted to...
Can someone point me in the right direction for searching for and shrinkwrapping all frames that contain equations, but leave the rest alone? Thanks, Sean ...
Hi Sean, If your equations are contained alone in anchored frames, it is fairly easy. // Set a variable for the active document. Set vDoc = ActiveDoc; // Set a...
They are. Thanks Rick! I had a problem in a book whereby, in one chapter in 7 locations, there was some weird font shift in some equations in shrink-wrapped...
Hi Russ, ... Do you want to extend the selection pressing the cursor keys? If so: Why don't you just use shift + cursor keys? Regards, Klaus Mueller, Munich...
Hi Klaus, I hadn't really thought about the shift + cursor keys part. This is a combo learning session for me, as well as trying to duplicate a feature that...
I have a variable search+replace script that seems to be leaving LCK files. How can I clean this up? Thanks, Sean ===== Sub VariableImportSub //This has to be...
My solution is to change the end of the script thusly: EndLoop Save Document DocObject(vCurrentDoc); Close Document DocObject (vCurrentDoc) IgnoreMods; EndIf ...
Do you have any suggestions for the following script. It works, but what am I missing? I use TitleChapter and TitleAppendix for chapter titles, depending on...
Hi Sean, You don't have to use a script to solve this particular problem. It is possible to watch two pgf-formats from one RunningH/F by defining the...
I had no idea. Thanks for the tip!! I appreciate it. Cheers, Sean ... __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus -...
Hi All, I can make a single script that does this on a per-char fmt basis, but that's completely moronic (not to mention embarrassing). Does anyone have a...