Sorry I omitted that Lypptek, I am referring to FrameScript variables. I think that was part of my problem....the Framescript reference manual has a section on...
17
Rick Quatro
frameexpert@...
Sep 1, 1999 5:52 pm
Hi Jen, Your script is counting character formats in the active document with the name "class name"; and of course, there is only one character format with ...
18
Jen Michaels
jenm@...
Sep 1, 1999 6:09 pm
Hi All: I'm the process of learning Framescript and was wondering if anyone could help me troubleshoot this script: Set Count = 0; Loop ForEach (CharFmt)...
20
Jen Michaels
jenm@...
Sep 2, 1999 12:09 am
Thanks for all your help. It works perfectly. Jen ... From: Rick Quatro [mailto:frameexpert@...] Sent: Wednesday, September 01, 1999 1:57 PM To:...
23
docuprose@...
Sep 3, 1999 7:45 pm
Hi fellow scripters: I create a document in Word using structured styles. I save it as an RTF file. I use FrameMaker to open and convert the RTF file. I import...
24
Rick Quatro
frameexpert@...
Sep 4, 1999 12:42 am
I am not sure, but here is my guess. Perhaps the "sautoupd 1Numbered" is a "1Numbered" format that had some kind of an local formatting override applied to it...
25
docuprose@...
Sep 7, 1999 8:14 pm
Is it too obvious that I'm excited about this new news group? I find the script editing window within FrameMaker to be a bit restrictive, especially for longer...
26
Philip Sharman
psharman@...
Sep 7, 1999 9:09 pm
... I use the shareware text editor UltraEdit <http://www.ultraedit.com/index.html>. The thing that I like about it (and the thing that prompted me to send in...
27
nancy mccoy
docuprose@...
Sep 7, 1999 10:10 pm
I'm downloading and trying it right away. Thanks so much. Nancy McCoy docuprose 909-738-9332...
28
cguillermo@...
Sep 8, 1999 4:04 pm
Hi all, I have a document that have some set of Bulleted List and Second Bulleted List. But my problem here is that in each set of Bulleted list I have to ...
29
nancy mccoy
docuprose@...
Sep 8, 1999 5:02 pm
Hi Carlos: 1. Set your script to loop through all the paragraph objects in your document. 2. Set up an if-endif statement to "catch" all the occurrences of ...
30
Rick Quatro
frameexpert@...
Sep 8, 1999 6:08 pm
I would make one minor change to the loop: Loop ForEach(Pgf) In(ActiveDoc.MainFlowInDoc) LoopVar(pgfobj) Technically, a list of paragraphs in the document may...
31
Jen Michaels
jenm@...
Sep 9, 1999 4:24 pm
Hi All: I'm trying to extract the string from text with class name formatting; however, I'm finding it really difficult. Is there a dummies book for ...
32
cguillermo@...
Sep 9, 1999 5:22 pm
Hi All, Before my mew question I would like to thank's to Nancy McCoy and Rick Quatro for you help; Thank again. I try to Import some word-97(ch**.doc) files...
33
John Pitt
jpitt@...
Sep 9, 1999 10:48 pm
Joe, I had a similar predicament a few months ago, and being a very new FrameScript user (and I haven't progressed since :-( ), the blokes at FrameScript...
34
Rick Quatro
frameexpert@...
Sep 9, 1999 7:21 pm
Hi Jen, Before I forget, there is an error in my original script. This statement "If vTList.Size > 0" should be "If vTList > 0". This is not related to your ...
35
jhlakey@...
Sep 9, 1999 8:43 pm
I am a new FrameScript user, and I am (predictably?) having some problems working out the syntax. I'm hoping that someone might be able to give me some...
36
Rick Quatro
frameexpert@...
Sep 10, 1999 12:55 am
A quick fix would be to map the Change Bar tag to $DATA; in WebWorks. Dealing with character formats can be pretty complicated compared to paragraph formats....
37
jhlakey@...
Sep 10, 1999 2:39 pm
I considered remapping the Change Bar character tag in WebWorks as you suggested, but we use a different color text to denote changes in our online docs, so we...
38
Jen Michaels
jenm@...
Sep 10, 1999 2:52 pm
Hi All: Is it possible to perform a search on a stringlist and then scroll to the results? Jen...
39
Rick Quatro
frameexpert@...
Sep 10, 1999 4:09 pm
Hi Jen, The ability to find an item in a stringlist was added to a later version of FrameScript. I am not sure which version, but if it doesn't work for you, ...
40
Marcus Streets
marcus@...
Sep 13, 1999 2:05 pm
I want to change all instances of a specific paragraph tag into a table. I have rather a lot of instances so I want to automate the process. So this loop...
41
Rick Quatro
frameexpert@...
Sep 13, 1999 7:36 pm
Hi Marcus, The key to solving the problem is the Get TextList command. To find the true end offset for a paragraph use this: Get TextList InObject(current_pgf)...
42
mikem@...
Sep 13, 1999 9:40 pm
Hello, I'm new to FrameScript--so I'm probably missing the obvious--but is there any way to sort a table from within a script? Within FrameMaker, it's simply...
43
cferguson@...
Sep 14, 1999 2:58 pm
Hi! I've been using FrameScript for almost a year now...just love it...cannot understand how I did without it all those years... I write API reference manuals....
44
Rick Quatro
frameexpert@...
Sep 14, 1999 3:30 pm
Hi Colin, I agree with you wholeheartedly about FrameScript; it is a great program. What you want to do is possible with FrameScript. The general process will ...
45
mfrischknecht@...
Sep 17, 1999 12:50 pm
Hello all, I posted this earlier to the framers mailing list; Marcus Streets then pointed me to this list, so I repost this here, hoping that some people in...
46
wimh@...
Sep 20, 1999 12:00 pm
Does anybody have a script that finds all instances of text in textboxes that don't fit, and subsequently enlarges the textbox to fit the text? thanks...
47
Rick Quatro
frameexpert@...
Sep 20, 1999 12:30 pm
Wim, Do you want to expand the textbox horizontally or vertically? To check if a text box is overflowed, you have to check its SubCol.Overflowed property. Rick...
48
cferguson@...
Sep 23, 1999 8:59 pm
I'm trying to create an Author marker in my Frame 5.5 document. As far as I can tell, the only way to do this in FrameScript is to create a marker and then...