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 ...
3331
Simon Bate <simon....
simonbate
Jan 4, 2003 12:57 am
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...
3332
Rick Quatro
frameexpert
Jan 4, 2003 1:47 am
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 ...
3333
russurquhart1 <rus...
russurquhart1
Jan 5, 2003 8:08 pm
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...
3334
torstenrtz <torste...
torstenrtz
Jan 6, 2003 2:00 pm
Hi, I want to 'paste special' (Rich Text Format) from the clipboard. Is there a command/option to do it with 'framescript39;? Torsten...
3335
Rick Quatro
frameexpert
Jan 6, 2003 2:03 pm
There is an Fcode that you can use to invoke the Paste Special dialog box. Execute Fc KbdPasteSpecial; Rick Quatro Carmen Publishing rick@... ...
3336
Klaus Mueller
klaus_mueller23
Jan 6, 2003 2:08 pm
Hi Russ, ... See the code fragment below (must be installed). Type "Esc xs" to toggle its status. Kind regards, Klaus Mueller, Munich ... //...
3337
Klaus Mueller
klaus_mueller23
Jan 6, 2003 2:20 pm
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...
3338
Johan Decock
jdecock@...
Jan 6, 2003 2:22 pm
Did you look in maker.ini? Johan ... ABIS Training & Consulting website: http://www.abis.be - e-mail: training@... tel: Belgium: (+32)-16-245610 -...
3339
Klaus Mueller
klaus_mueller23
Jan 6, 2003 2:51 pm
Johan, ... Yep. Nothing found. Regards, Klaus Mueller, Munich...
3340
dacoverston <dcove...
dacoverston
Jan 6, 2003 3:18 pm
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...
3341
Rick Quatro
frameexpert
Jan 6, 2003 3:28 pm
Modify the New TextRange command: New TextRange NewVar(vMyRange) Object(pgfvar) Offset(0) Offset(ObjEndOffset-1); and remove the Execute command. Rick Quatro ...
3342
info
fcicomunicacao
Jan 6, 2003 3:45 pm
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 ... ...
3343
Klaus Mueller
klaus_mueller23
Jan 6, 2003 3:47 pm
... and/or: Change Apply TextProperties TextRange(TextSelection) to match your TextRange variable :-) Apply TextProperties TextRange(vMyRange) Regards, Klaus...
3344
Rick Quatro
frameexpert
Jan 6, 2003 4:09 pm
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...
3345
dacoverston <dcove...
dacoverston
Jan 6, 2003 4:16 pm
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...
3346
dacoverston <dcove...
dacoverston
Jan 6, 2003 5:03 pm
That did it. Final code is: New PropertyList NewVar(vProps) Underlining(0); LOOP ForEach(Pgf) In(ActiveDoc) LoopVar(pgfvar); New TextRange NewVar(vMyRange)...
3347
Klaus Mueller
klaus_mueller23
Jan 7, 2003 1:23 am
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...
3348
russurquhart1 <rus...
russurquhart1
Jan 7, 2003 5:41 am
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...
3349
Sean Brierley
seanb_us
Jan 7, 2003 7:43 pm
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 ...
3350
Rick Quatro
frameexpert
Jan 7, 2003 7:59 pm
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...
3351
Sean Brierley
seanb_us
Jan 7, 2003 9:08 pm
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...
3352
Klaus Mueller
klaus_mueller23
Jan 7, 2003 10:14 pm
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...
3353
russurquhart1 <rus...
russurquhart1
Jan 7, 2003 11:17 pm
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...
3354
Sean Brierley
seanb_us
Jan 8, 2003 9:36 pm
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...
3355
Sean Brierley
seanb_us
Jan 8, 2003 9:43 pm
My solution is to change the end of the script thusly: EndLoop Save Document DocObject(vCurrentDoc); Close Document DocObject (vCurrentDoc) IgnoreMods; EndIf ...
3356
Sean Brierley
seanb_us
Jan 8, 2003 11:39 pm
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...
3357
Roland de Vreede
ome_roland
Jan 9, 2003 9:07 am
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...
3358
Sean Brierley
seanb_us
Jan 9, 2003 2:39 pm
I had no idea. Thanks for the tip!! I appreciate it. Cheers, Sean ... __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus -...
3359
John Francis
jfrancis999
Jan 9, 2003 6:01 pm
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...