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 your group to be featured on the Yahoo! Groups website? 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 6200 - 6229 of 9213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6200
Hello Jack, ... To create a standalone TOC from a document, you need to create a temporary book, add the doc (New BookComponent), and also the TOC to this...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jul 1, 2005
10:06 am
6201
Hi all- I made a list of property names (FontSize, RightIndent, etc.), and I want to get the value of each one as I loop through pgfs. So I tried a couple of...
nireedmot
Offline Send Email
Jul 1, 2005
5:01 pm
6202
Hello Tom, ... Did you made a string list of property names like this? New StringList NewVar(propertynames) Value('FontSize') Value('RightIndent'); ... ...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jul 1, 2005
7:41 pm
6203
Well, that's interesting, and unfortunate, that you can't specify properties as variables. I was afraid of that. Looks like I'll have to use one of your brute...
nireedmot
Offline Send Email
Jul 1, 2005
10:33 pm
6204
Hi, all I want to remove a bookcomponent from a book file. Is there anyone who knows how to do it? Here is an example below. // Removing TOC file from a book....
ta_nyamada
Offline Send Email
Jul 4, 2005
3:26 am
6205
Hello, The key is the DELETE instruction Delete Object(vBookComp); Best regards Karsten 'MAC' Natebus Dipl.Ing.(FH), EMD ... mailto:karsten@... ...
framescript@...
karsten_natebus
Offline Send Email
Jul 4, 2005
6:58 am
6206
Hello, Karsten Thank you! Delete command is what I needed. I thought that Delete command deletes a file from the disk, but it was misunderstanding. In this...
ta_nyamada
Offline Send Email
Jul 5, 2005
12:00 am
6207
Frame 7.0 Theoretically, how hard would it be to swap elements in a structured frame environment using FrameScript? Basically I have sets of ...
Alex Maynes
alex_maynes
Offline Send Email
Jul 5, 2005
10:26 pm
6208
Hello Alex, ... Yes, this is possible with FrameScript. You may want to take a look at the sample scripts EltDefUsageCount.fsl or ReportElementStructure.fsl; ...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jul 6, 2005
12:12 am
6209
Hello Alex, here is a sample code for loop all elements (with childelements) in structured document. Best regards Karsten Karsten 'MAC' Natebus Dipl.Ing.(FH),...
framescript@...
karsten_natebus
Offline Send Email
Jul 6, 2005
5:36 am
6210
Thanks Klaus and Karsten. This information and sample code is a great starting point... Alex. ... __________________________________ Do you Yahoo!? Read only...
Alexander Maynes
alex_maynes
Offline Send Email
Jul 6, 2005
7:05 am
6211
Hi Alex, Basically, you need to set up your own little algorithm to walk the tree. It's a non-linear concept, because a structure tree is non- linear. But...
Russ Ward
russwardwsc
Offline Send Email
Jul 7, 2005
3:08 pm
6212
I use RefFileNotFound(AllowAllRefFilesUnFindable) option of Open command when opening all documents in a book. If a referenced file is not found during opening...
ta_nyamada
Offline Send Email
Jul 7, 2005
7:02 pm
6213
You would have to check your document for missing items after the document is opened. For example, you would loop through the list of imported graphics in the...
Rick Quatro
frameexpert@...
Send Email
Jul 7, 2005
8:41 pm
6214
Hello Takaaki, ... The RefFileNotFound option itself does not return any information which files are missing. ... With FrameScript 3.0 or later, you could use...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jul 7, 2005
10:08 pm
6215
Hello Rick and Klaus, Thank you! Your scripts taught me how to get 'status'. I'll apply your idea to getting a status about unresolved cross-reference and...
ta_nyamada
Offline Send Email
Jul 8, 2005
6:18 am
6216
Hi all, Is it possible to get a log about Hypertext link error? However, I don't want to use the following F-Code. Execute FrameCommand KbdValidateHypertext; ...
ta_nyamada
Offline Send Email
Jul 9, 2005
7:03 am
6217
What kind of Hypertext links are you trying to validate? If they are gotolink links, the process would be similar to validating the other kinds of referenced...
Rick Quatro
frameexpert@...
Send Email
Jul 9, 2005
2:20 pm
6218
Hi all, I wonder how to determine that the current selection is in a math object (equation). If the math object itself is selected, the document property ...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jul 10, 2005
2:57 pm
6219
Just a passing thought, but maybe the problem is the solution (maybe not a GOOD one, but it might work): If you can't get any TextSelection property, then...
dgnospam63@...
dick_girard
Offline Send Email
Jul 10, 2005
7:25 pm
6220
Hello Dick, ... Unfortunately, this does not work because it won't be possible to differentiate between the IP in an equation and no selected objects. Regards,...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jul 10, 2005
7:43 pm
6221
Ah, yes. I knew there was something I hadn't considered. But this is a Sunday and I am lazy today. :-) Dick...
dgnospam63@...
dick_girard
Offline Send Email
Jul 11, 2005
12:17 am
6222
Hello Rick, Thanks for your advice. ... gotolink links, ... Yes, gotolink. I can parse the marker text now. But I have another problem. Parsing the marker text...
ta_nyamada
Offline Send Email
Jul 11, 2005
10:45 am
6223
For a relative path, you can use Run eSys.ExtractPathName FullPath(oDoc.Name) NewVar(sPath); to get the path to the current document, and then add sPath to the...
Rick Quatro
frameexpert@...
Send Email
Jul 11, 2005
1:59 pm
6224
Hi Klaus, I poked through the FDK documentation and can't find anything about a text selection within an equation. What are you trying to do? Thanks. Rick...
Rick Quatro
frameexpert@...
Send Email
Jul 11, 2005
3:01 pm
6225
Hello Rick, ... I wrote a script that selects the anchor of selected objects. This is especially useful if you don't find the anchor of AFrames, but also comes...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jul 11, 2005
3:20 pm
6226
Hi Klaus, OK, I see what you mean. If I can think of a workaround, I will let you know. Thank you. Rick ... From: Müller, Klaus To:...
Rick Quatro
frameexpert@...
Send Email
Jul 11, 2005
4:18 pm
6227
Hello Rick, ... to do some extra work. Unfortunately the form is ..\Target.fm. I needed some extra lines, and my script went very ugly. Anyway I've completed...
ta_nyamada
Offline Send Email
Jul 12, 2005
8:56 am
6228
Hi, In my Build automation, I save the book as a PDF format. I want to set the Bookmarks level to None. Since some writers are using a older FrameMaker version...
vijiva
Offline Send Email
Jul 13, 2005
3:42 pm
6229
Hi, I had updated FrameScript to a recent version, but still the PDF bookmarks are creating problems. The following is the script I use to save as PDF. Save...
vijiva
Offline Send Email
Jul 13, 2005
4:46 pm
Messages 6200 - 6229 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