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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 155 - 184 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
155 Marcus Streets
marcus@... Send Email
Dec 6, 1999
1:18 pm
I want to determine whether a particular paragraph starts with an anchored frame. So I get a text list from the pgf. Get TextList InObject(curr_pgf) ...
156 Rick Quatro
frameexpert@... Send Email
Dec 6, 1999
1:38 pm
Hi Marcus, Instead of Offset, you need TextOffset: Write Console txt_item.TextOffset; Rick Quatro Carmen Publishing 716 659-8267 frameexpert@... ...
157 Frank Elmore
elmsoft@... Send Email
Dec 6, 1999
10:43 pm
Hello Marcus, The property is called TextOffset not offset, so it should be txt_item.TextOffset. On what page of the documentation is the typo? Frank Elmore ...
158 plagasse@... Send Email Dec 7, 1999
5:23 pm
Hi, Does anyone know if there are functional differences between the FrameScript version 1.23 and FrameScript 1.22? I did not found anything at the Finite...
159 dwwatts@... Send Email Dec 7, 1999
11:16 pm
Hi all, Is it possible to display a window showing the status of a script? For example, as I'm processing through a BOOK file, I'd like to say something like...
160 plagasse@... Send Email Dec 8, 1999
2:24 pm
Hello David, I think that the Write Command (FrameScript 1.2. Scriptwriter's Reference, p.134) can do what you want: WRITE CONSOLE 'Processing Chapter...' will...
161 Marcus Streets
marcus@... Send Email
Dec 8, 1999
2:45 pm
... There are problems with both of these. In a long script, especially one where you are pushing the CPU utilization up to 100%, which if you do any file...
162 Rick Quatro
frameexpert@... Send Email
Dec 8, 1999
3:16 pm
I like to use the FrameMaker title bar as a progress indicator, for example: Set Session.Label = 'Processing '+vCounter+' of '+vTotal; or Set Session.Label =...
163 David Watts
dwwatts@... Send Email
Dec 8, 1999
3:43 pm
Rick, Marcus, thanks for the responses. Yes a non-modal window would be a good addition. However, Rick's idea of using the title bar is a good replacement...
164 David Watts
dwwatts@... Send Email
Dec 8, 1999
3:46 pm
I want to be able to determine if a string only contains alpha characters (ie, only A-Z and a-z). How do I do that? String manipulation and analysis...
165 Rick Quatro
frameexpert@... Send Email
Dec 8, 1999
5:12 pm
String analysis functions are a little weak with FrameScript. Can you give more details or an example of what you are trying to do? There is probably a ...
166 David Watts
dwwatts@... Send Email
Dec 8, 1999
6:33 pm
"rick quatro" <frameexper-@...> wrote: original article:http://www.egroups.com/group/framescript-users/?start= 165 ... give ... probably a ... Rick,...
167 David Watts
dwwatts@... Send Email
Dec 8, 1999
6:46 pm
"david watts" <dwwatt-@...> wrote: original article:http://www.egroups.com/group/framescript-users/?start= 166 ... Actually, upon reflection, I don't...
168 Rick Quatro
frameexpert@... Send Email
Dec 8, 1999
7:11 pm
David, First of all, I would like to see your code that extracts each word from a paragraph. Can I have a copy of it? You can determine the length of a string...
169 David Watts
dwwatts@... Send Email
Dec 8, 1999
8:07 pm
RE: "rick quatro" <frameexper-@...>: original article:http://www.egroups.com/group/framescript-users/?start= 168 Rick, excellent! Thanks. I think...
170 Rick Quatro
frameexpert@... Send Email
Dec 9, 1999
1:04 pm
Here is a followup to an old thread. I just installed version 1.26 of FrameScript, and it helps to clear up this matter. When you query the InCond property of...
171 cferguson@... Send Email Dec 9, 1999
6:32 pm
Has anyone out there tried adding body rows to a table using New TableRows? I can get the function to add heading rows only....
172 Rick Quatro
frameexpert@... Send Email
Dec 10, 1999
5:29 pm
You are probably not using all of the parameters. Put your cursor in a table and try this; it works for me. Set vCurrentTbl = SelectedTbl; New TableRows...
173 Rick Quatro
frameexpert@... Send Email
Dec 10, 1999
6:26 pm
Fellow Scripters, I need to clarify my explanation. In order to insert body rows, your RowObject must be a body row. If you use my code below with a table that...
174 David Watts
dwwatts@... Send Email
Dec 10, 1999
9:33 pm
All, The following subroutine lists all the import-by-reference graphics in a document. Feel free to use it in your own scripts. The odd thing is that in my...
175 Rick Quatro
frameexpert@... Send Email
Dec 11, 1999
12:40 am
Hi David, Thanks for the nice script. Graphics imported by copying have a blank InsetFile property. To find them in the document, check the following property:...
176 David Watts
dwwatts@... Send Email
Dec 13, 1999
8:12 pm
How do I sort a table in FrameScript? Specifically, I want to do the equivalent of clicking Table > Sort > Row Sort > Sort by Column 1 > Ascending. How? I...
177 Joseph Zitt
jzitt@... Send Email
Dec 13, 1999
10:20 pm
I have some code dealing with tables that isn't working right. It did last week, but something seems to have happened wover the weekend. Here's the code, with...
178 Rick Quatro
frameexpert@... Send Email
Dec 14, 1999
12:02 am
Joseph, You don't say exactly what you are trying to do, but here are a few things for you to check: * Where do you set the "jzPgf" variable? * In the NewTable...
179 Michael Conner
michaelconner@... Send Email
Dec 14, 1999
7:33 pm
I using FS 1.26 on a Mac (OS 8.6) with FM 5.5.6. I just discovered a problem with the open document command. I have a folder with a slash in the name, 'CAR...
180 David Watts
dwwatts@... Send Email
Dec 14, 1999
9:48 pm
How do I tell what page a cross reference is on? Specifically, I'd like to report what the page number is that's printed at the bottom of the page. Thanks. ...
181 Rick Quatro
frameexpert@... Send Email
Dec 14, 1999
11:28 pm
Mike, Try this: 1) Open a new, blank document. 2) Type in a forward slash. 3) Run the following script to find the ASCII value of the forward slash: Set...
182 Rick Quatro
frameexpert@... Send Email
Dec 14, 1999
11:28 pm
David, Check this property of the XRef: Display vCrossRef.Page.PageNumString; where vCrossRef is your XRef variable. Rick Quatro Carmen Publishing 716 659-8267...
183 David Watts
dwwatts@... Send Email
Dec 15, 1999
2:39 pm
Thanks Rick. I keep forgetting that there are a set of properties (p24 of the Scriptwriter's Reference) that apply to all object types. David. "rick quatro"...
184 Michael Conner
michaelconner@... Send Email
Dec 15, 1999
2:53 pm
... Thanks Rick, but doesn't make any difference. The / still gets changed to a \ between Framescript and FM. I even tried putting in a backslash variable ...
Messages 155 - 184 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