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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 5627 - 5656 of 9213   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5627
Hello; I was using this script without any problems up until recently, however when I fire it up now it does not replace paragraph formats and only deletes...
toby1rod
Offline Send Email
Dec 1, 2004
10:08 am
5628
Hello For getting Doc objects use the Set command. ... Set FileVar = ActiveDoc; The CombinedFonts parameter is only for japanese documents. ... Import Formats...
karsten_natebus
Offline Send Email
Dec 1, 2004
2:42 pm
5629
Hi Karsten; thanks for your help; I found the REAL problem was that for some reason the template file I was using would not close without going through a Save...
toby1rod
Offline Send Email
Dec 1, 2004
3:34 pm
5630
Hello Use in the Close command the IgnoreMods parameter. Close Document DocObject(TemplateVar) IgnoreMods; Replace in the Loop command 'ActiveDoc' with the...
karsten_natebus
Offline Send Email
Dec 1, 2004
3:56 pm
5631
Hi Folks, I'm doing a presentation on "Automating FrameMaker Tasks" at next year's WritersUA (formerly WinWriters) conference ...
Alan Houser
pm1762
Offline Send Email
Dec 2, 2004
3:48 pm
5632
Hi all, I want get the metric value of the tabs of a PgfFmt. With this code, i get the array of the first tab: // ---- Aktives Dokument? If (ActiveDoc = 0) ...
karle59
Offline Send Email
Dec 3, 2004
11:06 am
5633
Hi Michael ... Use the "X" propertie: Set metOffset = vLS10Tab01.X; Display metOffset; Best regards Michael p. s. You can find this information in chapter 2,...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 3, 2004
11:46 am
5634
I am importing new formats including the page formats from a new template. It is not copying the master pages from the master template when running my script....
melofer
Offline Send Email
Dec 7, 2004
2:29 am
5635
melofer, next time please show us the relevant code you currently use. You cannot delete _all_ master pages, depending on pagination properties the default...
Michael Müller-Hil...
michaelmh
Offline Send Email
Dec 7, 2004
9:20 am
5636
Hello All, Ok here's the situation. I am trying to find a script that will allow me to: 1. Select a table by Name e.g. 'Table1' 2. Replace paragraph formats...
toby1rod
Offline Send Email
Dec 8, 2004
1:41 pm
5637
Here is one way to find all of the tables with a particular tag. Set oDoc = ActiveDoc; Loop ForEach(Tbl) In(oDoc) LoopVar(oTbl) If oTbl.TblTag = 'Table1' // Do...
Rick Quatro
frameexpert@...
Send Email
Dec 8, 2004
1:53 pm
5638
Hi, ... you can use a loop through _all_ tables in document Set oDoc = ActiveDoc; Loop ForEach(Tbl) In(oDoc) LoopVar(oTbl); If (oTbl.TblTag = 'Table1') // here...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 8, 2004
2:02 pm
5639
Thanks guys, The script effectively finds the table that I wanted, and changes the formats, as I want. But then it keeps going and changes all of the other...
toby1rod
Offline Send Email
Dec 8, 2004
3:25 pm
5640
Hi Toby, ... I think the question is, what does your sub routine ChangeAllParagraphFormats do? I guess it changes _all_ paragraphs in the document, also it is...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 8, 2004
3:53 pm
5641
Hi folks, I want to change an existing element in to another element. The old element is invalid in the structure. The new element will be valid. I thought, I...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 9, 2004
9:40 am
5642
Hello Michael, i have tested your script, the code is correctly. best regards Karsten 'MAC' Natebus Dipl.Ing.(FH), EMD ... mailto:karsten.natebus@... ...
karsten_natebus
Offline Send Email
Dec 9, 2004
2:34 pm
5643
Hello Karsten, ... thanks that you tested my code. The problem is not that the changing not happened. The problem is that after the changing the element is...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 9, 2004
2:59 pm
5644
Helle Michael, in my sample is the changed element valid. best regards Karsten 'MAC' Natebus Dipl.Ing.(FH), EMD ... mailto:karsten.natebus@... ...
karsten_natebus
Offline Send Email
Dec 9, 2004
3:15 pm
5645
Hello Karsten, ... hmmm, that is fine, because my approach is right and is it bad, because I need a depthly test, to check, why the routine doesn't work with...
Michael.Kaemper@...
michaka67
Offline Send Email
Dec 9, 2004
4:03 pm
5646
This might not be the right forum for my question. I would like to get a ballpark idea of FrameScript consulting rates. I tried contacting a FrameScript...
lamster47
Offline Send Email
Dec 9, 2004
8:51 pm
5647
How can one select all text between certain paragraph tags? For example, I want to navigate to the first Head1 tag in a document, then select all text between...
Michael Smith
cnfwriter
Offline Send Email
Dec 9, 2004
11:09 pm
5648
Hello Michael, ... Please note that the "first" paragraph of a specific paragraph format in the document may differ from what you actually want. If the...
Klaus Mueller
klaus_mueller23
Offline Send Email
Dec 10, 2004
3:19 am
5649
... Thank you Klaus. The code works well. One question about this part: New TextRange NewVar(vTextRange) Object(vStartPgf) Offset(0) Object(vPgf.PrevPgfInFlow)...
Michael Smith
cnfwriter
Offline Send Email
Dec 10, 2004
1:02 pm
5650
Hello Mike, ... Sorry, I do not really understand your questions. The introducing line Set vStartPgf = 0; is used because only text between Head1 paragraphs...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Dec 10, 2004
1:51 pm
5651
Thank you again Klaus. Your annotation was very helpful. I think I understand how it is working now. This was very helpful!! ... From: Müller, Klaus...
Michael Smith
cnfwriter
Offline Send Email
Dec 10, 2004
2:07 pm
5652
Hi there, how can i import all the paragraph and character tags from a open document into the current active document ? I appreciate any help. Thank you ...
srikanth09090
Offline Send Email
Dec 10, 2004
3:46 pm
5653
Hello Srikanth, ... Use the Import Formats command. Set objCurrentDoc = ActiveDoc; Open document File('source.fm') NewVar(objSourceDoc); Import Formats...
Karsten Natebus
karsten_natebus
Offline Send Email
Dec 10, 2004
4:11 pm
5654
Karsten, thank you. It works, I am trying to close the source document which is opened while importing the tags. I tried to use the following code at the end,...
srikanth09090
Offline Send Email
Dec 10, 2004
4:45 pm
5655
Hallo Srikant The Close TextFile is only for textfiles. Use for FrameMaker documents the Close Document command. Set objCurrentDoc = ActiveDoc; Open document...
Karsten Natebus
karsten_natebus
Offline Send Email
Dec 10, 2004
5:42 pm
5656
Karsten, Thanks alot, I was looking for that Close Document command. Thanks again srikanth -- In framescript-users@yahoogroups.com, Karsten Natebus ... ...
srikanth09090
Offline Send Email
Dec 10, 2004
6:22 pm
Messages 5627 - 5656 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