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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 5688 - 5717 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5688
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. ...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jan 2, 2005
2:56 pm
5689
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...
nvncknvnck
Offline Send Email
Jan 11, 2005
9:52 am
5690
Hello nvncknvnck, ... You could try it this way: Get TextList InRange(vTRange) NewVar(vTList) VarBegin; If vTList Get Member Number(1) From(vTList)...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jan 11, 2005
10:03 am
5691
Thanks! ... textrange. ... been found ... framescript-users-unsubscribe@yahoogroups.com ... framescript-users-owner@yahoogroups.com ... ...
nvncknvnck
Offline Send Email
Jan 11, 2005
10:09 am
5692
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...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 17, 2005
6:55 pm
5693
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jan 17, 2005
7:27 pm
5694
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...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 17, 2005
8:17 pm
5695
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...
cwillardr
Offline Send Email
Jan 17, 2005
11:05 pm
5696
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Jan 17, 2005
11:28 pm
5697
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@...
Send Email
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 Bernhardt
largeteddybe...
Offline Send Email
Jan 18, 2005
2:53 pm
5699
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...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jan 18, 2005
3:34 pm
5700
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,...
cwillardr
Offline Send Email
Jan 18, 2005
3:46 pm
5701
Hello Chuck, ... The TextSelection is a TextRange, not a Pgf object. Recommended: Set vPgf = vDoc.TextSelection.Begin.Object; or: Set vTextRange =...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jan 18, 2005
5:20 pm
5702
... <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...
Combs, Richard
rgcombs1
Offline Send Email
Jan 18, 2005
5:37 pm
5703
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...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Jan 18, 2005
5:40 pm
5704
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...
cwillardr
Offline Send Email
Jan 19, 2005
6:53 pm
5705
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. ...
Zsolt Olah
magyarcdi
Offline Send Email
Jan 20, 2005
4:56 pm
5706
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@...
Send Email
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...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 20, 2005
5:57 pm
5708
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:...
Simon Bate
simonbate
Offline Send Email
Jan 20, 2005
6:05 pm
5709
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 =...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 20, 2005
6:23 pm
5710
To round to the 10s place, use the modulus operator as follows... SET vOriginal = 5521; SET vRounded = vOriginal + 5 - (vOriginal + 5) % 10; WRITE CONSOLE...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Jan 20, 2005
8:19 pm
5711
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...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 20, 2005
9:18 pm
5712
See page 34 of FrameScript 3.1 Basics manual... or... to save time looking it up... New Integer NewVar(vTheNewVariable) Value(vConvFixed); ... From: William...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Jan 20, 2005
9:39 pm
5713
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...
William Bernhardt
largeteddybe...
Offline Send Email
Jan 21, 2005
3:05 pm
5714
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...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Jan 21, 2005
5:01 pm
5715
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...
framerjeffk
Offline Send Email
Jan 21, 2005
9:47 pm
5716
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...
yourmom_of_course
yourmom_of_c...
Offline Send Email
Jan 21, 2005
9:56 pm
5717
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...
Michael Müller-Hil...
michaelmh
Offline Send Email
Jan 21, 2005
10:19 pm
Messages 5688 - 5717 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