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...
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...
Victor, ... To find FM objects within TextRanges or Pgfs, use Get TextList: Find FromTextLoc() Footnote ReturnRange(vTRange); If vTRange Get TextList...
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...
... Here's what I use... Set vPgf = TextSelection.Begin.Object Get TextList InObject(vPgf) NewVar(vStufflist) TblAnchor MarkerAnchor FrameAnchor FnAnchor; Get...
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@...
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...
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...
Dear scripters, In a scientific environment very large (or very small) numbers are regularly used. Thinking about calculations in FrameScript lead to some ...
Dear scripters, Please enlighten me, whether there are clear rules ore You sometimes also must try out control statement syntax. FrameScript version 2.1R1 ...
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...
... 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...
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...
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...
... 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...
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...
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) ...
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...
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...
... 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)...
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@...
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...
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@...
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)...
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...