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

Messages

  Messages Help
Advanced
Messages 8880 - 8909 of 10298   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
8880 ava_carmel Offline Send Email Apr 1, 2009
12:57 pm
I wrote a script that adds a TopicAlias marker to each 1 Heading paragraph in a file. The marker text is the same as the heading text. I added a subroutine...
8881 Reng, Winfried
winfriedreng Offline Send Email
Apr 1, 2009
1:02 pm
Hi, Finally a question which I am able to answer. Either delete the semicolon before "ReplaceAll". "ReplaceAll" belongs to the Get command. Or use this...
8882 Rick Quatro
frameexpert@... Send Email
Apr 1, 2009
1:13 pm
Hi Ava, You have an extra semicolon in the command. Remove the semicolon from the end of the first line. Get String FromString(vMarkerText)...
8883 Wolicki, Benjie
bwolicki Offline Send Email
Apr 1, 2009
2:08 pm
I'm working on a conversion script that among other things puts a lot of text in tables. When I copy the text into the tables, character formatting and Xrefs...
8884 ava_carmel Offline Send Email Apr 1, 2009
2:10 pm
Thanks to you both. I thought these were two separate commands. The main part of the script is now: Loop ForEach(Pgf) In(vCurrentDoc) LoopVar(vPgf) If...
8885 Mueller, Klaus
klaus_mueller23 Offline Send Email
Apr 1, 2009
2:17 pm
Ava, ... ReplaceAll(' ') With('_'); ... Additionally, you need to apply the text (vMarkerString) to the marker. Set vMarker.MarkerText = vMarkerString; Shorter...
8886 simonbate Offline Send Email Apr 1, 2009
2:20 pm
Hi Benjie, Are you copying the text through the .text property? or are you actually cutting and pasting the text? To preserve the formatting and all other...
8887 ava_carmel Offline Send Email Apr 1, 2009
2:26 pm
It works now. Thanks so much. Ava...
8888 soqcy Offline Send Email Apr 1, 2009
7:37 pm
I can assign a value for text and an existing character format BoldOnly: Get... Set varformatname.fmt = '<BoldOnly>MyText'; Does not work however for the...
8889 Wolicki, Benjie
bwolicki Offline Send Email
Apr 2, 2009
7:53 am
Hi Everybody, If I do the following to find the table anchors in a paragraph: Get TextList InObject(vPgf) NewVar(vTblList) TblAnchor; How do I then access the...
8890 Wolicki, Benjie
bwolicki Offline Send Email
Apr 2, 2009
8:22 am
Never mind, I found the answer. Benjie Wolicki Senior Information Developer Service Automation, ESM BMC Software, Inc. ________________________________ From:...
8891 cwillardr Offline Send Email Apr 2, 2009
4:57 pm
Hello Smart Folks- I've been asked to as part of my PDF generation process to also create a standard document review message and attach the PDF. Is it possible...
8892 Rick Quatro
frameexpert@... Send Email
Apr 2, 2009
5:25 pm
Hi Chuck, You can do it using FrameScript's EActiveXObject object and Windows CDO messaging. CDO details are at http://www.paulsadowski.com/WSH/cdo.htm ...
8893 Debbie
thedocchick Offline Send Email
Apr 2, 2009
10:00 pm
I'm looking to do a find and replace for conditional text. I've assembled this script that preserves pre-existing conditions when conditions overlap on exactly...
8894 Jeff_M
jeffmaggioli Offline Send Email
Apr 2, 2009
10:01 pm
... Here's one way to do it. It seems like there might be a more straightforward method. Basically, this does what you were trying to do, but uses two...
8895 Michael Müller-Hil...
michaelmh Offline Send Email
Apr 3, 2009
2:21 pm
I would recommend two things: * Use '</>' instead of '<Default whatever...>'; this is a not so well known shortcut available since FrameMaker 6, or so.. * If...
8896 cwillardr Offline Send Email Apr 3, 2009
3:43 pm
Thanks Rick! Well... I'm not having any luck with this. No errors, but no emails either... :-) I was told by one of our UNIX hackers around here that he never ...
8897 cwillardr Offline Send Email Apr 3, 2009
6:27 pm
Ok... so I went a slightly different route with this since what I really wanted to do was use MS Outlook anyway. It seems to work great. Took a lot of poking...
8898 Rick Quatro
frameexpert@... Send Email
Apr 6, 2009
2:53 pm
Hello All, I am looking for a legal copy of Office 2007 Professional. If you have one and would like to exchange it for some FrameScript work, please let me...
8899 Debbie
thedocchick Offline Send Email
Apr 6, 2009
4:55 pm
Okay, so I'm an idiot--It turns out I forgot to ask for the next item in the list! This line: Get Member From(vTprops.InCond) NewVar(vCondInt); Should be: Get...
8900 milmacdoug Offline Send Email Apr 6, 2009
5:52 pm
... What do you do if that format *does* already exist?...
8901 ava_carmel Offline Send Email Apr 7, 2009
8:00 am
I'm expanding my script that adds TopicAlias markers and replaces all spaces with underscores. I want it to examine the text of each of these markers, count...
8902 Rick Quatro
frameexpert@... Send Email
Apr 7, 2009
11:48 am
Hi Ava, I would probably use a simple function like this: Set sMarkerText = 'This_Is_Marker_Text_With_Underscores'; Display GetUnderscoreCount{sMarkerText}; ...
8903 ava_carmel Offline Send Email Apr 7, 2009
1:57 pm
Thanks, Rick. That's a clever approach. I'll tailor it to the script and see if it works. Ava...
8904 Rick Quatro
frameexpert@... Send Email
Apr 7, 2009
2:21 pm
Hi Ava, You could make this even more useful by making it into a more general function, where you could get the count of any character. Then you could use it...
8905 Jeff_M
jeffmaggioli Offline Send Email
Apr 8, 2009
6:55 pm
This seems like a problem that must have a simple solution, but I can't seem to figure one out. I need to copy a graphic that is embedded (not imported by...
8906 Michael Müller-Hil...
michaelmh Offline Send Email
Apr 8, 2009
7:40 pm
You would use the Copy Text and Paste Text commands like you do it manually. The term "Text" just means a text selection, that is you have to define a...
8907 Klaus Mueller
klaus_mueller23 Offline Send Email
Apr 8, 2009
7:43 pm
Hello Jeff, ... The "Copy Text" command does also work with selected graphics: //-- Select anything before running the script Set lvInsertIntoAFrame = False; ...
8908 Rick Quatro
frameexpert@... Send Email
Apr 8, 2009
7:50 pm
Hi Jeff, To copy something other than text, it has to be selected. So, assume that oGraphic is the graphic. Set oGraphic.GraphicIsSelected = True; ...
8909 Jeff_M
jeffmaggioli Offline Send Email
Apr 9, 2009
12:15 am
... Thank you all (did I mention how much I like this group?) : ) Seriously, I should have realized that I could just copy the text range including the anchor....
Messages 8880 - 8909 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