Skip to search.
framescript-users · FrameScript Users

Group Information

  • Members: 630
  • Category: Software
  • Founded: Aug 20, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 200 - 230 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
200 Peter Martin
pcmartin@... Send Email
Jan 2, 2000
7:51 am
Best regards Peter Email: pcmartin@... Tel: (03) 9562 2277 Fax: (03) 9562 5377 Mobile: 0418 587 857...
201 Peter Martin
pcmartin@... Send Email
Jan 2, 2000
10:26 pm
202 Eric Strobl
estrobl@... Send Email
Jan 3, 2000
3:22 pm
... Hi David, The little thing below will get you a sorted list of paras in a doc. /Eric ... Set vDoc = ActiveDoc; New StringList NewVar( vUnSorted ); New...
203 Peter Martin
pcmartin@... Send Email
Jan 5, 2000
12:57 am
204 Joseph Zitt
jzitt@... Send Email
Jan 5, 2000
8:38 pm
I know I'm missing something obvious here: in the program: Loop ForEach(pgf) In(MainFlowInDoc) LoopVar(jzPgf) Get Object Type(PgfFmt) Name(jzPgf.Name)...
205 Rick Quatro
frameexpert@... Send Email
Jan 5, 2000
10:07 pm
FormatOverride is a read-only property (even though the Scriptwriter's Reference does not say so). Rick Quatro Carmen Publishing 716 659-8267 ...
206 Joseph Zitt
jzitt@... Send Email
Jan 6, 2000
3:22 pm
Argh... I could have sworn that that worked a while back. Did it change as of the latest release? Failing that, is there a way to force a paragraph to its...
207 Rick Quatro
frameexpert@... Send Email
Jan 6, 2000
7:13 pm
Hello All, I am trying to use FrameScript to change the first page number of a document to -1. It works using the FrameMaker interface (Format > Document > ...
208 Brenda Barkey
bbarkey@... Send Email
Jan 6, 2000
9:35 pm
Hi All! I'm trying to import formats from one document into another, but I'm not having any luck. With the document to be updated open, I run the following ...
210 Brenda Barkey
bbarkey@... Send Email
Jan 6, 2000
10:22 pm
I've used the following line in a script to add 1: SET vPageNumber = 1 + PgfObj.Page.PageNum; So, maybe something like the following might work? SET...
211 Michael Conner
michaelconner@... Send Email
Jan 6, 2000
10:37 pm
... I don't have time right now to test this, but it may be that after you open testtemplate.fm, it is the active doc. Then you would be importing the formats...
212 Brenda Barkey
bbarkey@... Send Email
Jan 6, 2000
11:08 pm
Of course! I knew it had to be something simple! The following works: SET DocVar = ActiveDoc; OPEN Document...
213 Rick Quatro
frameexpert@... Send Email
Jan 7, 2000
2:18 am
Brenda, Mike's probably has it right. You should specify a variable for the DocObject parameter (the target document). This works in one of my scripts. Import...
214 Rick Quatro
frameexpert@... Send Email
Jan 7, 2000
2:55 am
Thanks for the help. I've tried several variations, but setting the FirstPageNum property to a negative number does not "stick." Anything 0 or above works. I...
215 Amos Raban
amos.r@... Send Email
Jan 13, 2000
2:00 pm
hi, I'm working on a script that finds a word across a book. I want the script to abort after i find the string i was looking for. So far I was able to open...
216 Brenda Barkey
bbarkey@... Send Email
Jan 13, 2000
6:07 pm
Hi Amos -- I would try writing a FIND command line with a ReturnStatus() option; see page 64 of the FrameScript Reference manual. Then, include an...
217 Helen Perez
hperez@... Send Email
Jan 13, 2000
7:21 pm
Hello BB, Could you please tell me where to find the FrameScript Reference manual? I am new to FrameScript and feel it would be very useful to have a...
218 Brenda Barkey
bbarkey@... Send Email
Jan 13, 2000
8:31 pm
Hi Helen -- The FrameScript reference manual came with my copy of FrameScript. If you take a look at your release notes, there's a note about the...
219 Amos Raban
amos.r@... Send Email
Jan 16, 2000
9:48 am
I want to use the ScrollTo option with the FIND command. How is it implemented ? can you give me an example of a TextRange to ScrollTo ? The reference doesn't...
220 Brenda Barkey
bbarkey@... Send Email
Jan 19, 2000
11:22 pm
Hi Folks -- I want to count the number of times a condition tag is used in a document. But, I'm stuck. I can get a list of the condition tags available in the...
221 Eric Strobl
estrobl@... Send Email
Jan 20, 2000
9:13 am
Hi Brenda, I think what you want to do is tricky. The code below will count the number of times conditiontag charprops change, *BUT* _CAVEAT_: if conditions...
222 Rick Quatro
frameexpert@... Send Email
Jan 20, 2000
6:11 pm
Hi Brenda, I am sorry for the delay. The script is a bit long, so I put a zip archive of the script and a sample FrameMaker file at: ...
223 Brenda Barkey
bbarkey@... Send Email
Jan 20, 2000
9:23 pm
Thanks, Rick! The script is perfect for what I need to do. The comments are clear, and I can follow the code. Being new to FrameScript, I don't know all the...
224 Kay Ethier
kethier@... Send Email
Jan 20, 2000
9:45 pm
Hi Rick: Our client -- Organon Teknika -- wants to move forward with the scripts for tables. Please remind me -- did they need a copy of FrameScript, or could...
225 Hedley Finger (EPA)
Hedley.Finger@... Send Email
Jan 20, 2000
10:45 pm
Scripters: My colleague bruce.ashley@... would like to be able to print all the attributes of para and char tags in a document. Does anybody know...
226 Eric Strobl
estrobl@... Send Email
Jan 21, 2000
9:25 am
Hi Brenda & Rick, How's this for an alternative: 1. In Frame, hide ONLY the condition you're interested in. 2. Run the script below. ...
227 Brenda Barkey
bbarkey@... Send Email
Jan 24, 2000
8:01 pm
Thanks, Eric! Rick's script worked out beautifully. I need to count the various condition tags before I start re-tagging text and deleting unused tags. BB. ...
228 Brenda Barkey
bbarkey@... Send Email
Jan 26, 2000
12:00 am
Hi Rick -- I think I understand the FrameScript commands until I try to tweak a script to make it do other things, like -- in this case -- count the number of ...
229 Hedley Finger (EPA)
Hedley.Finger@... Send Email
Feb 3, 2000
7:31 am
Comrades: What gives? I was speaking to a colleague about FrameScript as a possible solution and pointed him to http://www.fml.com but he reported the site as...
230 Philip Sharman
psharman@... Send Email
Feb 3, 2000
4:22 pm
I suggest you try http://www.framescript.com again. I noticed yesterday that their websites didn't seem to be working. But I looked at it this morning, and...
Messages 200 - 230 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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