Skip to search.
framescript-users · FrameScript Users

Group Information

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

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

  Messages Help
Advanced
Messages 2174 - 2203 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2174 Victor Caston
vmcaston Offline Send Email
May 1, 2002
7:10 am
If I use Find FromTextLoc to locate a footnote, what is in the returned range? And how do I get to the Fn object itself? If I ask for the ObjectName of the...
2175 Klaus Mueller
klaus_mueller23 Offline Send Email
May 1, 2002
7:22 am
Hi Pete, ... Try 'Heading && Page'. (and keep your format names clean ...) ... The ampersand is used to underline (and thus enable to shortcut) the next char...
2176 Klaus Mueller
klaus_mueller23 Offline Send Email
May 1, 2002
8:10 am
Victor, ... To find FM objects within TextRanges or Pgfs, use Get TextList: Find FromTextLoc() Footnote ReturnRange(vTRange); If vTRange Get TextList...
2177 a_s_mohr Offline Send Email May 1, 2002
10:37 pm
I'm trying to determine whether or not a paragrph is empty before I cut text from it to paste elsewhere. Sometimes this may be after I've already cut other...
2178 hokuspokus22 Offline Send Email May 1, 2002
10:58 pm
... Here's what I use... Set vPgf = TextSelection.Begin.Object Get TextList InObject(vPgf) NewVar(vStufflist) TblAnchor MarkerAnchor FrameAnchor FnAnchor; Get...
2179 augustmohr
a_s_mohr Offline Send Email
May 1, 2002
11:46 pm
... Thanks, Pete, I'll give that code a shot. Looks like it tests for what I need. I discovered that the following one-line script: Display...
2180 Rick Quatro
frameexpert Offline Send Email
May 2, 2002
1:40 am
Here is what I think is the easiest way to test for an empty paragraph, that is, with no markers, text, anchored frames, tables, etc. Get TextList...
2181 Peter Harrison
renesans@... Send Email
May 2, 2002
3:58 pm
The magic number is 10*2^27 (10 times (2 to the power 27)). A strange combination of decimal and binary to find in a com-pu-ter. What a sad life I must lead...
2182 scottrd131 Offline Send Email May 2, 2002
5:03 pm
Hi, please excuse me if this question is a basic one. I've just started with Framescript and was wondering if it is able to do the following function. I've...
2183 Klaus Daube
klausdaube Offline Send Email
May 2, 2002
8:00 pm
Dear scripters, In a scientific environment very large (or very small) numbers are regularly used. Thinking about calculations in FrameScript lead to some ...
2184 Klaus Daube
klausdaube Offline Send Email
May 2, 2002
8:01 pm
Dear scripters, Please enlighten me, whether there are clear rules ore You sometimes also must try out control statement syntax. FrameScript version 2.1R1 ...
2185 tps_svl Offline Send Email May 2, 2002
8:04 pm
I'm trying to find a way around that ubiquitous "Unavailable fonts" message. I've tried adding this command to the NotePreOpenDoc event: Open Document...
2186 a_s_mohr Offline Send Email May 2, 2002
8:58 pm
... I've discovered that there is a kind of "twos-complement" behavior going on here. You can subtract from the magic number, and that represents offsets...
2187 Rick Quatro
frameexpert Offline Send Email
May 3, 2002
3:08 am
Klaus, You don't need the semicolon at the end of the Loop or EndLoop statements. The problem is the line root = (root + z/root)/2.; You should use the Set...
2188 Tim Volk
mitvolk Offline Send Email
May 3, 2002
7:11 am
Fellow Scripters, I'm trying to add a menu when starting FrameMaker 6.0 (on Win2000). I defined the script Menu.fsl on initialization in ...
2189 Tim Volk
mitvolk Offline Send Email
May 3, 2002
7:14 am
Hello again, Is there a way of printing for example page 1, 2, 5, 10, and 15 of a document, instead of printing pages 1 to 15? When using documents of more...
2190 Michael Müller-Hi...
michaelmh Offline Send Email
May 3, 2002
8:16 am
... The Initial Script is just "Run". To install a menu, you have to "Install" a script. In my setups I have an Initial Script which in turn installs the menu...
2191 Michael Müller-Hi...
michaelmh Offline Send Email
May 3, 2002
8:28 am
Hi Klaus, I see basically the same behaviour. I have inserted the necessary Set commands and removed the semicolons from the Loop command (see below), and...
2192 Tim Volk
mitvolk Offline Send Email
May 3, 2002
9:31 am
Still trying to get the job done... In FrameMaker there's a possibility to Generate a list of marker by pressing Special -> ListOf.. -> Markers (alphabetical) ...
2193 Michael Müller-Hi...
michaelmh Offline Send Email
May 3, 2002
9:52 am
... Are you thinking of compiling the list of markers inside FrameScript or driving FrameMaker to do it? - Michael -- ...
2194 Tim Volk
mitvolk Offline Send Email
May 3, 2002
10:05 am
Driving FrameMaker to do it seems the easiest way of achieving it. I guess. Most important is that it will come out alphabetically. ... Van: Michael...
2195 Rick Quatro
frameexpert Offline Send Email
May 3, 2002
11:47 am
Hi Tim, The pages that print are set with three document properties: PrintStartPage, PrintEndPage, and PrintScope. One way to do this would be to prompt with a...
2196 Michael Müller-Hi...
michaelmh Offline Send Email
May 3, 2002
1:06 pm
... Tim, have a look at the code below. It is an excerpt from a longer subroutine that was supposed to create a stand-alone TOC or APL (alphabetical pgf list)...
2197 Rick Quatro
frameexpert Offline Send Email
May 3, 2002
1:31 pm
Dick, You are on the right track with your first solution. First of all, capture the name of the document in a variable, and then cancel the opening of the ...
2198 Serge Juillerat
sjuillerat@... Send Email
May 3, 2002
1:44 pm
Hi I'm trying to open an Sgml file without having the dialog boxes like the file type dialog and the SGML application dialog. I tried different attributes in...
2199 Rick Quatro
frameexpert Offline Send Email
May 3, 2002
1:50 pm
Serge, Try the various parameters on the Open command such as SgmlOpenApplication and OpenAsType. If you still have problems, post your code. Thanks. Rick...
2200 Serge Juillerat
sjuillerat@... Send Email
May 3, 2002
1:59 pm
Rick, Here is the code line I use to open my Sgml document OPEN Document File('D:\Projets\CAV\Dev\applic\fragment\21\original.sgm') NewVar(TestTemplate)...
2201 Rick Quatro
frameexpert Offline Send Email
May 3, 2002
2:03 pm
Serge, Try adding the other parameters that I mentioned and see if it works. Rick...
2202 Serge Juillerat
sjuillerat@... Send Email
May 3, 2002
2:18 pm
Rick, Thanks it worked fine for the application but not for the file type OPEN Document File('D:\Projets\CAV\Dev\applic\fragment\21\original.sgm') ...
2203 Richard Vogtmann
sbrv22 Offline Send Email
May 3, 2002
2:25 pm
hello serge, i cut a peace of my script with just your need below. Its out of a script were you can open more than one fm-dokument and print them all. OPEN...
Messages 2174 - 2203 of 10298   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