Hi Scripters, Does anyone know of a FrameMaker document or session property that controls whether a file is opened in "maximized" or "restored" view? If I...
Hi, I don't know if such property exist but in order to maximize and minimize you can use KbdMaximize and KbdMinimize F-codes. I am pretty sure there is...
I'm still running FrameMaker 6.0 and I've actually had a copy of FrameScript for quite a while -- I just haven't had the time or need to try and use it. But in...
... Well, I guess a lot of folks learn best by doing it! Or by looking at available scripts that seem to solve a similar problem. ... If you still have...
Hi, I want to write a short script which moves to each text inset and updates it. In my file there are 8 different text flows. In each there is a single text...
Hello Winfried, the update for nested textinsets is not possible. Check the current textinset, is this a nested textinset then open the source document etc.......
Hi Karsten, Thank you very much. However, there is nothing nested. There are just 8 text frames, named A to H. Each has a single text inset imported, just a...
Hi Scripters. I've a script (as UTF-8) and the following line returns the false character position. (Elmscript Fontencoding is set to 'UTF8') What's wrong? Set...
... As long as FrameScript is running in UTF8 mode PlatformEncodingMode is not needed and not working. I can confirm this behaviour (bug). Since the .SubString...
Hi Chris, What versions of FrameMaker and FrameScript are you using? Thanks. Rick Rick Quatro Carmen Publishing Inc 585-659-8267 www.frameexpert.com...
Rick Quatro
frameexpert@...
Oct 14, 2008 5:19 pm
8509
Hi Chris, I am on FrameMaker 8 and FrameScript 5.1R3p210. I get 8 for an answer. Rick Quatro Carmen Publishing Inc 585-659-8267 www.frameexpert.com...
Rick Quatro
frameexpert@...
Oct 14, 2008 8:27 pm
8510
Hi Rick, I've tried it too with your same setup, but saving the script in UTF-8. You get 9 because FrameScript reads the following: Set strText =...
... Rick & Juan, it is connected to Unicode mode. The script with the string has to be stored in UTF-8 encoding, FrameScript has to be set to UTF-8 encoding ...
Hi Michael, I ran my successful test from the Elmscript editor. I just heard from Frank Elmore that an imminent 5.2 release is going to fix these string...
Oops, this was supposed to reach the German FrameMaker users list. Sorry, - Michael ... -- _______________________________________________________________ ...
I would like to have a script that allows me to turn only one condition on.? In the process of doing this I would first like to "hide" all of the existing...
I've got a script that is supposed to be building a table of contents in a structured document. It is similar to Rick Quatro's AutoNumber Report in his Crash...
Hi K'Chebe, Set oDoc.ShowAll = False; Loop ForEach(CondFmt) In(oDoc) LoopVar(oCondFmt) Set oCondFmt.CondFmtIsShown = 0; EndLoop Rick Quatro Carmen Publishing...
Rick Quatro
frameexpert@...
Oct 17, 2008 2:22 am
8518
Hi Steve, I usually add the table and rows as if they were unstructured, and then apply the correct elements to the table and rows after it is inserted. Rick...
Rick Quatro
frameexpert@...
Oct 17, 2008 2:23 am
8519
hi, I got some problerm with FS,How do i Delete the text before XRef and the CharTag is 'AA_Bold'?there are so many 'AA_Bold'Text before XRef, I wrote a script...
You can iterate through all the conditions, and check them against a pre-defined list of conditions you want to show (or hide), and show (or hide) them based...
I guess you'd want to loop through all tables in a book, look for the right vTbl.TblTag property (the table type), and change the TBLCOLWIDTHS parameter. New...
Hi Rose, To see a table's TblColWidths setting, you can use this on the selected table: Set oTbl = SelectedTbl; Display oTbl.TblColWidths; You can manipulate...
Rick Quatro
frameexpert@...
Oct 20, 2008 8:18 pm
8524
Actually, the cell contents are all fairly uniform, so odd breaks are really not much of a problem. I must have looked at TblColWidths a dozen times without...
I've had this come up a few times in the past, so I thought I'd ask if there is a trick to this. What I want to do this time is: 1. Find some text (unit of...
Hi Chuck, I have found Find FromTextLoc to be prone to endless loops, depending on what you do to the found text. I prefer to process one paragraph at a time...
Rick Quatro
frameexpert@...
Oct 21, 2008 12:30 pm
8527
Hi Rick, I'm using FrameMaker 8.0p277 and ElmScript 5.1R3p210 Chris...
Hi Chris, According to Frank Elmore, the FrameScript developer, there is an being released shortly that will fix these string problems. Rick Quatro Carmen...