Search the web
Sign In
New User? Sign Up
framescript-users · FrameScript Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

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

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help