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...
Show off your group to the world. Share a photo of your group with us.

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 6884 - 6913 of 9213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6884
I have a user who uses automatic change bars. He updated a variable that appears on a master page, so each page has a change bar in the footer. We're using...
Rick A. Henkel
rickhenkel
Offline Send Email
May 1, 2006
1:41 pm
6885
Hi Rick, I would loop through all of the variables in the document. Check the page that contains the variable: Set oPgf = oVar.TextRange.Begin.Object; If...
Rick Quatro
frameexpert@...
Send Email
May 1, 2006
2:36 pm
6886
Here's an interesting problem: My script changes the values of a number of variables in a file. One variable is defined as "Contract Name \= Contract 099". For...
eric.dunn@...
Ford_Prefect...
Offline Send Email
May 3, 2006
1:42 pm
6887
Hi Eric, The way you are doing it seems logical, but instead you have to define a string variable for the n-dash and use it in the definition. Set oDoc =...
Rick Quatro
frameexpert@...
Send Email
May 3, 2006
2:32 pm
6888
... Which is how I might have done it had I been building the string in FrameScript. Thing is, my script takes the variable definition from an ini file. So,...
eric.dunn@...
Ford_Prefect...
Offline Send Email
May 3, 2006
2:52 pm
6889
Hi. I'm learning FrameScript and having fun. I am learning alot from this list. So far I have written scripts to automate printing to PDF and this has saved...
Stephen O'Brien
soqcy
Offline Send Email
May 4, 2006
2:58 pm
6890
Hi. I'm learning FrameScript and having fun. I am learning alot from this list. So far I have written scripts to automate printing to PDF and this has saved...
soqcy
Offline Send Email
May 4, 2006
3:21 pm
6891
I thought I'd push this message back through the group in the hope that someone with the answer missed the original message. :-) Rick...
Rick A. Henkel
rickhenkel
Offline Send Email
May 8, 2006
8:11 pm
6892
Hi Rick, The easy answer is "yes"; the method you use will depend on the document. If you want to email me a sample or two, I will take a look. Thanks. Rick I...
Rick Quatro
frameexpert@...
Send Email
May 8, 2006
8:19 pm
6893
Has anyone else seen this. I was writing a script that changed table properties if they were more than two pages long. Therefore I wanted to compare the page...
Marcus Streets
marcus@...
Send Email
May 9, 2006
3:26 pm
6894
Hello Marcus, ... In FrameScript 3.0, there were some bugs like this one. They were fixed with FrameScript 3.1. ... Yes, of course. FS 3.0 had also this ugly...
Müller, Klaus
klaus_mueller23
Offline Send Email
May 9, 2006
4:03 pm
6895
... FS 4.0 has that ugly bug as well. But I don't know if it's FrameScript or FrameMaker that is the culprit. As for the original post about odd behaviour, it...
eric.dunn@...
Ford_Prefect...
Offline Send Email
May 10, 2006
2:40 pm
6896
I'm new to FrameScript and have search alot on how I can do: 1.) Create an empty book and add documents to it? 2.) Replace a paragraph's text with something...
Per Lundkvist
persyll
Offline Send Email
May 10, 2006
4:06 pm
6897
... I'm not new to FrameScript and I have to search a lot too. lol ... What version of Framescript are you using? Check: New Named Object: New Book Name()...
eric.dunn@...
Ford_Prefect...
Offline Send Email
May 10, 2006
4:30 pm
6898
Ok, thank you for the answers. I'm using FrameScript 3.0. 1.) Ok, "New Book" was not easy to find in the documentation, but anyway, when have made a new book,...
Per Lundkvist
persyll
Offline Send Email
May 11, 2006
5:52 am
6899
For your number 3: Update XRefs Everything ... that ... peut ... inadvertance,...
sbats123
Offline Send Email
May 11, 2006
1:06 pm
6900
So, I absolutely loved the new script editor with FrameScript4 when I got it. Now I'm not so sure... I know, the old adage is to save often. But sometimes when...
eric.dunn@...
Ford_Prefect...
Offline Send Email
May 11, 2006
2:06 pm
6901
Hello, Hopefully, I'm doing something wrong here, but when I execute the following script: x = 1; fnTest{'Outside loop'}; Loop While(x < 5) fnTest{'Inside...
mcguiremkm
Offline Send Email
May 17, 2006
7:24 pm
6902
Hi Mike, Try this: x = 1; Set gvReturn = fnTest{'Outside loop'}; Loop While(x < 5) Set gvReturn = fnTest{'Inside loop'}; x = x + 1; EndLoop Function fnTest...
John Francis
jfrancis999
Offline Send Email
May 17, 2006
7:37 pm
6903
Hi, I am new - trying to do some basic scripting for some projects. I wrote a script that uses a dialog box to find an indicated text string. It uses a loop to...
carey_bates
abaco34
Offline Send Email
May 18, 2006
11:54 am
6904
I cannot take full credit for this. Klaus helped me along with another gentlemen (I think Dillon). I hope you can figure out your problem from this. What this...
William Bernhardt
largeteddybe...
Offline Send Email
May 18, 2006
12:37 pm
6905
I just posted a script for converting pressure that uses a pop-up box to enter a pressure value. You could make a spin-off from it. carey_bates...
William Bernhardt
largeteddybe...
Offline Send Email
May 18, 2006
12:51 pm
6906
I buried this in a reply to another person, but here I go again. This only does the Search/Replace one time. How do I make it continue to loop? Are the two...
William Bernhardt
largeteddybe...
Offline Send Email
May 18, 2006
1:02 pm
6907
... <SNIP> Thank you, this does indeed solve my problem. It seems that I've grown lax in how I've been calling/using subs and functions in FS. I stopped using...
mcguiremkm
Offline Send Email
May 18, 2006
6:31 pm
6908
Thanks for the tips - a dialog box is needed - but one of your sub- routines may work. Thanks for sharing. Carey ... box to enter a pressure value. You could...
carey_bates
abaco34
Offline Send Email
May 18, 2006
7:20 pm
6909
I have a dialog box for find/replace SET BookObj = ActiveBook; SET ChgFromStr = ''; SET ChgToStr = ''; DialogBox Type(medit) Title('Find Instance of Entered...
carey_bates
abaco34
Offline Send Email
May 18, 2006
8:48 pm
6910
... <snip> ... If I'm understanding your intent (you'd like to loop through all paragraphs in the document, replacing text), then I think the problem lies with...
mcguiremkm
Offline Send Email
May 18, 2006
9:01 pm
6911
Hi! Im a bit new on framescripting, I want to get the position of a pgf so I can then see how much space is left on a page in metric mm for example. set...
dbmatte
Offline Send Email
May 19, 2006
4:19 pm
6912
That did it! Thank you, Thank you. For other readers - The point of this script is superscript and exponent number for square and cube. When files are...
William Bernhardt
largeteddybe...
Offline Send Email
May 19, 2006
4:45 pm
6913
Hi, I have written a simple script to parse a directory looking for .fm documents and then open them in the background modify a number of paragraph and...
Jeffrey Williams
jeffxorian
Offline Send Email
May 22, 2006
4:59 am
Messages 6884 - 6913 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