Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

framescript-users · FrameScript Users

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 901
  • Category: Software
  • Founded: Aug 20, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 6657 - 6687 of 10492   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
6657 jedimaster_mark99
jedimaster_m... Send Email
Jan 4, 2006
4:33 pm
Hi everyone. I'm new to the group, so I thought I'd introduce myself. My name is Mark and I work for a software company writing manuals. That brief...
6658 Alan Houser
pm1762 Send Email
Jan 4, 2006
5:24 pm
Mark, Might it be easier to use the name of the book file to generate the PDF name? Below is a code fragment that replaces a ".book" extension with ".pdf" and...
6659 Moore, Jenna
jtigerheart Send Email
Jan 5, 2006
3:10 pm
I tried searching through the archive and didn't find an answer to this, so let me know if I'm off my rocker here. (Bear with me as I'm new to writing...
6660 Klaus Mueller
klaus_mueller23 Send Email
Jan 5, 2006
3:20 pm
Hello Jenna, ... This can be done the following way: Set vDoc = ActiveDoc; If (not vDoc) LeaveSub; EndIf Get Object Type(PgfFmt) Name('TermDesc&#39;) ...
6661 vijiva Send Email Jan 5, 2006
3:53 pm
Any suggestions for the following email? ... in ... framescript. ... diff...
6662 Martinek, Carla
copper6500 Send Email
Jan 5, 2006
4:34 pm
Can I convert one conditional text tag to another via framescript? Carla cmartinek@... - CONFIDENTIAL- This email and any files transmitted with it are...
6663 Rick Quatro
frameexpert@... Send Email
Jan 5, 2006
6:05 pm
Trying to change some pgf fmtsHi Carla, Do you want to simply rename the condition format? If so, you can use: Set oDoc = ActiveDoc; Get Object Type(CondFmt)...
6664 Martinek, Carla
copper6500 Send Email
Jan 5, 2006
6:19 pm
Thanks, I'll give this a try. We ended up doing it manually this time around, but we often run into this type of problem with legacy docs and old condition...
6665 Rick A. Henkel
rickhenkel Send Email
Jan 6, 2006
7:48 pm
Using pieces of scripts from various posts, I created a script that removes all text tagged with a condition and then deletes that condition. My first...
6666 vijiva Send Email Jan 8, 2006
4:55 pm
Hi, When I compare two documents, sometimes one of the documents complains: "The document <name> contains multiple flows with the same name (A). These flows...
6667 gszabo007 Send Email Jan 10, 2006
2:23 am
just wanted to confirm that the approach Rick outlined - using an Intlist to store ids of anchored frames to delete - preempts this problem. thanks Rick! ... ...
6668 yarono5 Send Email Jan 10, 2006
3:08 pm
Hi All, I'm new to Framescript. I'm currently setting up a script that will check the PDF setup will correct it to a desired configuration. My question is: how...
6669 Rick Quatro
frameexpert@... Send Email
Jan 10, 2006
3:11 pm
See the PDFStructureLevel property of Pgf Fmt (paragraph format) objects. Rick Quatro Carmen Publishing 585-659-8267 www.frameexpert.com ... From: yarono5 To:...
6671 Rick Quatro
frameexpert@... Send Email
Jan 10, 2006
5:07 pm
Hi Zsolt, If we make the simple assumption that there are no tables in the main flow, you can use something like this: Set oFlow = ActiveDoc.MainFlowInDoc; Get...
6672 David Froidevaux
dis_media2 Send Email
Jan 10, 2006
5:14 pm
Hello list, I want to sort some tables by other parameters. My script works like this (ElmScript 4.0): 1. Loop through all tables in ActiveDoc 2. If the table...
6673 dis_media2 Send Email Jan 10, 2006
5:14 pm
Hello list, I want to sort some tables by other parameters. My script works like this (ElmScript 4.0): 1. Loop through all tables in ActiveDoc 2. If the table...
6674 eschieler Send Email Jan 10, 2006
5:43 pm
See the AcrobatLevel Pgf property in the following example: Event NotePostOpenDoc Set vCurrentDoc = ActiveDoc; // Set PDF bookmarks and levels New StringList...
6675 yarono5 Send Email Jan 11, 2006
12:43 pm
6676 Rick Quatro
frameexpert@... Send Email
Jan 11, 2006
12:57 pm
The closest thing to a switch is to use If/ElseIf/Else/EndIf If Case1 // Case 1 ElseIf Case2 // Case 2 ElseIf Case3 // Case 3 Else // Optional default case. ...
6677 Rick Quatro
frameexpert@... Send Email
Jan 16, 2006
1:45 pm
Hello All, How do I prevent a modeless form from closing when the Esc key is pressed? When my user clicks buttons on the modeless form, I want the focus to...
6678 Müller, Klaus
klaus_mueller23 Send Email
Jan 16, 2006
2:11 pm
Hello Rick, ... I don't think this is currently possible. ... Did you try Set Session.IsInFront = True; and eventually Set vDoc.IsInFront = True; ? Kind...
6679 Rick Quatro
frameexpert@... Send Email
Jan 16, 2006
2:50 pm
Hi Klaus, Thanks for the advice. It looks like Set Session.IsInFront = True; works. Rick Hello Rick, ... I don't think this is currently possible. ... Did you...
6680 Rick A. Henkel
rickhenkel Send Email
Jan 16, 2006
8:33 pm
Most of my writers have been trained to not access the master pages to do anything. However, we now have a deliverable that includes a copyright statement on...
6681 Rick Quatro
frameexpert@... Send Email
Jan 16, 2006
8:43 pm
Hi Rick, Yes, this can be done. You might want to consider using a variable for the copyright text. That way, they can use building blocks for character...
6682 yarono5 Send Email Jan 17, 2006
10:55 am
Hi, I'm using the following script to verify that the 'Generate PDF Bookmarks' is 'checked&#39; and it keeps crashing FrameMaker. If ActiveBook.PDFBookMark<>True ...
6683 Rick Quatro
frameexpert@... Send Email
Jan 17, 2006
12:14 pm
The PDFBookMark property is not valid for Book objects. You have to set it on each Doc object within the book. Rick Quatro Carmen Publishing 585-659-8267 ...
6684 yarono5 Send Email Jan 17, 2006
3:32 pm
Hi Rick, Thanks for the prompt response. I'm now able to set the 'Generate PDF Bookmarks' on each Doc object. But when I view these settings for the entire...
6685 Georg
georg3200 Send Email
Jan 17, 2006
6:23 pm
Hi, Is there a way to change the dictionary of a file or book. We have different dictionarys for books/files in different languages. Thanks in advance Georg ...
6686 Rick Quatro
frameexpert@... Send Email
Jan 17, 2006
7:29 pm
Did you try updating the book? Rick Hi Rick, Thanks for the prompt response. I'm now able to set the 'Generate PDF Bookmarks' on each Doc object. But when I...
6687 yarono5 Send Email Jan 18, 2006
11:27 am
Hi All, I've gone through the entire framescript documentation and didn't find anything on this one. Does someone have a clue how read or set this property? ...
Messages 6657 - 6687 of 10492   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