Hi all and a happy new year, When opening a structured book with the structured FrameMaker from the GUI, the known dialog (ViewOnly, StripStructure) is shown. ...
My goal is to find a variable with a specific name. However I have variables with similar names, such as 'Prod-A' and 'Prod-A Short.' Using Find FromTextLoc...
The following is a MEdit dialog box. It opens up asks to inout a number and will paste the number back into the document. How do I get the number/value that is...
Hello William, ... Just like you already did: The default value specified for the edit control will hold the value inserted by the user. You could try it this...
YOU ARE GOOD! I will now work on the rounding, based on what you sent me awhile back. Thanks! Bill Bernhardt Klaus Mueller <mueller23@...> wrote:Hello...
Hi scripters- I want to locate a character format at the end of a PGF (on the EOL symbol) and clear the format. Below is a sample script. It does everything...
William, ... The next release of FrameScript will possibly come with a new rounding function. In the meantime, you may want to play with the following rounding...
Hi Chuck, Why are you applying the Emphasis character tag to the end of the paragraph? It seems that you would want to apply CharTag('') to the end of the ...
Rick Quatro
frameexpert@...
Jan 18, 2005 1:50 am
5698
Thanks again, I will work with this one today. The "FINAL GOAL" is going to result with the information in the following chart copied from an Excel file. As a...
William, ... You should take a look at the routine I posted earlier this day. With this routine, you can specify the rounding and decimal numbers. With a...
Dang! Sorry. The code originally had CharTag(''), but during testing, I changed it to something else to see if that line was doing anything. It wasn't. Anyway,...
... <snip> ... </snip> Yes, insert the space; no, don't delete it again afterward. If you do, I think you'll find the pgf override returns when you save. This...
Hello Chuck, ... I assume that you have a hyperlink marker in the paragraph and applied a hyperlink char tag up to the end of the pgf. When (Alt+) clicking on...
Yep, that is exactly right. We wrote a script to do all the dirty work in creating a hyperlink on a selected chunk of text (adds a character format, and...
Hi, I'm new to FrameScript and usually don't post until I consulted all the docs but I've got a weird issue here. I have FrameScript 3.1 and FramMaker 7.0. ...
ScriptBuilder was discontinued with FrameScript 3. The FrameScript 3.x ScriptWindow is actually a FrameScript form and perhaps it wasn't possible to integrate...
Rick Quatro
frameexpert@...
Jan 20, 2005 5:02 pm
5707
Again Klaus Mueller, is the man! Ok, what is below finally works. (except the "but") What is below looks at the input number, and does not round it. (It was...
But, how do I get a whole number to be rounded? I tried -1, -2, with no luck. Add 5 to the number, then change the units value to 0. Simon _____ From:...
Where do I do this? If it weren't for Klaus, I would still be cutting and pasting from Excel. // Set vRound = 0.5 / vFactor; change this to? // Set vRound =...
To round to the 10s place, use the modulus operator as follows... SET vOriginal = 5521; SET vRounded = vOriginal + 5 - (vOriginal + 5) % 10; WRITE CONSOLE...
Thanks! In the pasted portion of the script (shown here) the vConvFixed is what pastes the rounded conversion answer/decimal number into the document. Set...
See page 34 of FrameScript 3.1 Basics manual... or... to save time looking it up... New Integer NewVar(vTheNewVariable) Value(vConvFixed); ... From: William...
Thank you, Kluas and Eric. The both of you have made this happen, not me. I will now be able to make happen what I want too. But the following questions come...
Framescript defaults to whatever you enter. If you enter a number with a decimal point, it will be a REAL. If you enter a number without a decimal point it...
I think that this one might be simple, but I'm not sure. I have several different types of files in a given book, some of which contain the name "Section." The...
Hi Scripters, I need to programatically verify that xrefs are not broken, but I cannot do an "Update XRef Everything;". I'm thinking the way to do this is for...
Mom, Your assumption is correct for spot xrefs. With paragraph-level xrefs only the number at the beginning of the XRefSrcText may be checked. Check out Rick...