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 6657 - 6687 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6657
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...
jedimaster_mark99
jedimaster_m...
Offline Send Email
Jan 4, 2006
4:33 pm
6658
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...
Alan Houser
pm1762
Offline Send Email
Jan 4, 2006
5:24 pm
6659
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...
Moore, Jenna
jtigerheart
Offline Send Email
Jan 5, 2006
3:10 pm
6660
Hello Jenna, ... This can be done the following way: Set vDoc = ActiveDoc; If (not vDoc) LeaveSub; EndIf Get Object Type(PgfFmt) Name('TermDesc') ...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jan 5, 2006
3:20 pm
6661
Any suggestions for the following email? ... in ... framescript. ... diff...
vijiva
Offline Send Email
Jan 5, 2006
3:53 pm
6662
Can I convert one conditional text tag to another via framescript? Carla cmartinek@... - CONFIDENTIAL- This email and any files transmitted with it are...
Martinek, Carla
copper6500
Offline Send Email
Jan 5, 2006
4:34 pm
6663
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)...
Rick Quatro
frameexpert@...
Send Email
Jan 5, 2006
6:05 pm
6664
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...
Martinek, Carla
copper6500
Offline Send Email
Jan 5, 2006
6:19 pm
6665
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...
Rick A. Henkel
rickhenkel
Offline Send Email
Jan 6, 2006
7:48 pm
6666
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...
vijiva
Offline Send Email
Jan 8, 2006
4:55 pm
6667
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! ... ...
gszabo007
Offline Send Email
Jan 10, 2006
2:23 am
6668
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...
yarono5
Offline Send Email
Jan 10, 2006
3:08 pm
6669
See the PDFStructureLevel property of Pgf Fmt (paragraph format) objects. Rick Quatro Carmen Publishing 585-659-8267 www.frameexpert.com ... From: yarono5 To:...
Rick Quatro
frameexpert@...
Send Email
Jan 10, 2006
3:11 pm
6671
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...
Rick Quatro
frameexpert@...
Send Email
Jan 10, 2006
5:07 pm
6672
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...
David Froidevaux
dis_media2
Offline Send Email
Jan 10, 2006
5:14 pm
6673
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...
dis_media2
Offline Send Email
Jan 10, 2006
5:14 pm
6674
See the AcrobatLevel Pgf property in the following example: Event NotePostOpenDoc Set vCurrentDoc = ActiveDoc; // Set PDF bookmarks and levels New StringList...
eschieler
Offline Send Email
Jan 10, 2006
5:43 pm
6675 yarono5
Offline Send Email
Jan 11, 2006
12:43 pm
6676
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. ...
Rick Quatro
frameexpert@...
Send Email
Jan 11, 2006
12:57 pm
6677
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...
Rick Quatro
frameexpert@...
Send Email
Jan 16, 2006
1:45 pm
6678
Hello Rick, ... I don't think this is currently possible. ... Did you try Set Session.IsInFront = True; and eventually Set vDoc.IsInFront = True; ? Kind...
Müller, Klaus
klaus_mueller23
Offline Send Email
Jan 16, 2006
2:11 pm
6679
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...
Rick Quatro
frameexpert@...
Send Email
Jan 16, 2006
2:50 pm
6680
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...
Rick A. Henkel
rickhenkel
Offline Send Email
Jan 16, 2006
8:33 pm
6681
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...
Rick Quatro
frameexpert@...
Send Email
Jan 16, 2006
8:43 pm
6682
Hi, I'm using the following script to verify that the 'Generate PDF Bookmarks' is 'checked' and it keeps crashing FrameMaker. If ActiveBook.PDFBookMark<>True ...
yarono5
Offline Send Email
Jan 17, 2006
10:55 am
6683
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 ...
Rick Quatro
frameexpert@...
Send Email
Jan 17, 2006
12:14 pm
6684
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...
yarono5
Offline Send Email
Jan 17, 2006
3:32 pm
6685
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 ...
Georg
georg3200
Offline Send Email
Jan 17, 2006
6:23 pm
6686
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...
Rick Quatro
frameexpert@...
Send Email
Jan 17, 2006
7:29 pm
6687
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? ...
yarono5
Offline Send Email
Jan 18, 2006
11:27 am
Messages 6657 - 6687 of 9208   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