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 to share photos of your group with the world? 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 6946 - 6975 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6946
Rick, ... in order for relative links to work. It is a saved document (generated index) being already part of an existing book. From FM all links work...
Guido Carl
gcarladwin
Offline Send Email
Jun 1, 2006
7:31 am
6947
Rick, now I found the solution, which is quite simple as the FS documentation showed (RTFM): Execute Hypertext Command(lvHypertextMarkertext); is now changed...
Guido Carl
gcarladwin
Offline Send Email
Jun 1, 2006
10:20 am
6948
Hi, I'm building a paragraph catalog that allows you to group paragraph styles together and handles them as a tree (ETreeCtrl). Everything works fine except I...
Zsolt Olah
magyarcdi
Offline Send Email
Jun 6, 2006
5:50 pm
6949
Hello Zsolt, ... Unfortunately, there is no such event. Instead, you need to use Event NoteBackToUser, which "is run everytime anything happens in the ...
Müller, Klaus
klaus_mueller23
Offline Send Email
Jun 6, 2006
6:00 pm
6950
Hi, When editing some fsl files in Framescript Script Window Editor ( FM 7.0, FS 3.1R4, xp pro sp2 ) it seems that i'm limited to a size of file ( nearly 36Ko...
tindalos2000
Offline Send Email
Jun 7, 2006
3:52 pm
6951
Hello Erwan, ... Depending on the FrameScript version, there are four different types of the "internal" editor (called with FrameScript > Script Window): A)...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 7, 2006
8:17 pm
6952
Hello Adrian, ... - Create a new string list (vPgfFmtNameList) - Open all book components invisible - Loop through all paragraph format of each doc - Add the...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 7, 2006
8:37 pm
6953
Hello Mark, I totally agree with Rick. In any case, you should prevent errors that might occur in advance. ... There is no such event in FrameScript. ...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 7, 2006
10:09 pm
6954
I can't figure this out. I have some table cell paragraphs that writers have manually set to a center alignment, overriding the paragraph tag's left alignment....
Rick A. Henkel
rickhenkel
Offline Send Email
Jun 9, 2006
2:32 pm
6955
Hello Rick, ... Instead of "NextPgfInFlow", use "NextPgfInDoc". Alternatively, you can use the Loop ForEach(Pgf) command (because you're not going to delete a ...
Müller, Klaus
klaus_mueller23
Offline Send Email
Jun 9, 2006
2:58 pm
6956
Thanks, Klaus. Works fine. Rick ... [mailto:framescript-users@yahoogroups.com] On Behalf Of Rick A. Henkel...
Rick A. Henkel
rickhenkel
Offline Send Email
Jun 9, 2006
3:12 pm
6957
Hello Carey, ... If there are no other lines than those: No. If those six lines (removing that overrides) are a small part of a large script: Maybe. Kind...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 9, 2006
11:58 pm
6958
A collegue of mine was observing string truncation when passing long (> 1000 bytes or so) queries to the FrameScript ODBC interface. Could it be that...
Peter Vanroose
peter_vanroose
Offline Send Email
Jun 10, 2006
9:17 am
6959
High, I noticed this bug a while ago. I use a free download editor "Context". I have found that the editor in Frame hangs up at 1000 lines of code. Paul...
paul schnall
pschnall2000
Offline Send Email
Jun 11, 2006
6:35 am
6960
Back at FrameScript after a while away, I've managed to adapt an earlier script so that it a) reads the colour definitions in the document; b) ignores colour...
grundnp9ed
Offline Send Email
Jun 12, 2006
11:16 am
6961
After months of haggling with this snippet, that script, and these files, I have finally developed a basic process for converting Word files to FM files. This...
carey_bates
abaco34
Offline Send Email
Jun 12, 2006
7:51 pm
6962
Excellent. Thank you. See my earlier post today - basic conversion process (Word to FM). Carey...
carey_bates
abaco34
Offline Send Email
Jun 12, 2006
8:02 pm
6963
Hi all. I want to insert PDFmarks which will print a specific page, so I need the PDF page number of this page. The first PDF page is 0, next pages are counted...
Guido Carl
gcarladwin
Offline Send Email
Jun 13, 2006
1:42 am
6964
Perhaps I need to see your code. It looks like there's some confusion between strings (which are FrameScript objects) and FrameScript variables. (That is,...
Simon Bate
simonbate
Offline Send Email
Jun 13, 2006
3:20 am
6965
(Tried to send this message today from two different providers without luck. I apologize if it will show up multiple times.) Hello Niels, ... You created the...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 13, 2006
3:54 am
6966
Hello Niels, ... You created the check boxes applying a "Name" property. You can access control values directly specifying the "NewVar" variable, but to access...
mueller23@...
klaus_mueller23
Offline Send Email
Jun 13, 2006
11:52 am
6967
... confusion between strings (which are FrameScript objects) and FrameScript variables. Confusion is always possible, and I'll happily admit to being new to ...
grundnp9ed
Offline Send Email
Jun 13, 2006
12:22 pm
6968
Hi everyone, I'm a bit programming-challenged, so please bear with me. I'm using FrameScript 3.2 R2 with FM 7.1. I'm trying to understand from Rick's...
David Schor
dsch_tw
Offline Send Email
Jun 13, 2006
1:06 pm
6969
Hi David, I guess there are two mistakes in line 2: Instead of Set vTbl = vCurrent.Doc.SelectTbl; Please use: Set vTbl = vCurrenttDoc.SelectedTbl; Regards ...
Michael.Kaemper@...
michaka67
Offline Send Email
Jun 13, 2006
1:18 pm
6970
David, Take out the dot between vCurrent.Doc Set vTbl = vCurrent.Doc.SelectTbl; Also, you need SelectedTbl. So it would be Set vTbl = vCurrentDoc.SelectedTbl; ...
Rick Quatro
frameexpert@...
Send Email
Jun 13, 2006
1:41 pm
6971
Thanks to Michael and Rick, I don't get the error message anymore. I apologize for not noticing a silly typing mistake. Unfortunately, I still don't achieve...
David Schor
dsch_tw
Offline Send Email
Jun 14, 2006
6:45 am
6972
Hello David, ... "vTextLoc" is not a property of the table. "InTextOb" is mispelled. Use InTextObj; "vTextLoc.InTextObj" (in a table) is a cell object, not a...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 14, 2006
8:05 am
6973
Klaus, thank you thank you thank you! It's perfect! I just haven't caught on to the nuts and bolts of understanding what is a valid property or command, and...
David Schor
dsch_tw
Offline Send Email
Jun 14, 2006
8:38 am
6974
Hello David, ... No: it is not: - In FrameMaker, create a table with a table title - Place the insertion point in the table title - Run the script: Set vDoc =...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jun 14, 2006
11:27 pm
6975
Hi Klaus, That's interesting. It adds more heading rows above the table title. My first question was, is there any use for this beast? However, it doesn't ...
Rick Quatro
frameexpert@...
Send Email
Jun 15, 2006
12:11 pm
Messages 6946 - 6975 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