Hi Sharon: How about considering a local resource? I'm enclosing a word 2 frame conversion script that I put together for a client....Try it ...I can do the...
484
jknowles@...
Oct 2, 2000 5:42 pm
I have been trying to convert the header of a Word table into the corresponding header of a Frame table. The following script gets part way there, but I get a...
485
Rick Quatro
rick@...
Oct 2, 2000 5:49 pm
Hi John, A Cell's Text property is read-only. To add text to the table cell, you have to add it to one of its paragraphs. You need the New Text command. ... ...
486
jknowles@...
Oct 3, 2000 2:47 pm
Rick, Thanks for your advice. It worked fine, and pointed out that I need to be more careful about the fine print in the docs. I have progressed to the next...
487
Rick Quatro
rick@...
Oct 3, 2000 5:16 pm
John, It doesn't have anything to do with the Write statement. Your Set vPgf statement is not complete. It should be Set vPgf =...
488
Ron Jeffries
ronjeffries@...
Oct 3, 2000 10:07 pm
I'll be unsubscribing from the list as I am no longer using FrameScript ... but who knows, I may be back for the next book. I'd like to thank everyone for...
489
jknowles@...
Oct 5, 2000 4:33 pm
I am trying to create a script that combines two columns of a table by moving the contents of each cell of one column into a second (newly created) paragraph...
490
Jennifer Anaya
janaya@...
Oct 5, 2000 4:46 pm
I posted this Monday but it didn't seem to make it. Sorry if I somehow missed it. Hello. I am trying to create a script that does the following, but it doesn't...
491
Michael Mueller-Hille...
info@...
Oct 5, 2000 8:27 pm
John, just a short thought (no testing, because I am away from my FrameScript computer): I think it would be easier to create a New Pgf (and setting it's...
492
Michael Mueller-Hille...
info@...
Oct 5, 2000 8:38 pm
Hi Jennifer, I am away from my FrameScript computer, but maybe I can give you a hint or two: ... Your LoopVar is PgfFmtVar, so you must check this: If...
493
Michael Mueller-Hille...
info@...
Oct 5, 2000 8:56 pm
Hi Sigrid, FrameScript-related questions are best answered in the framescript-users group at egroups.com. Look at the following code (untested, I am on another...
494
cferguson@...
Oct 5, 2000 10:06 pm
I can't figure out how to access and set Acrobat bookmark settings across an entire book. My script sets the AcrobatLevel property of every paragraph format in...
495
Philip Sharman
psharman@...
Oct 5, 2000 11:19 pm
... Another useful thing about UltraEdit is that you can customize its syntax highlighting to work with FrameScript. You can download a file to add this...
496
Rick Quatro
rick@...
Oct 6, 2000 3:02 am
Hi Jennifer, Your loop has a couple of small problems. When you refer to the current paragraph in your loop, you have to use the variable name you used in the ...
497
Michael Mueller-Hille...
info@...
Oct 6, 2000 8:06 am
Colin, my experience tells me that the Acrobat settings in the book (or the book components) are independent from those in the document. Have you checked what...
498
Rick Quatro
rick@...
Oct 6, 2000 2:04 pm
John, Here is a script that works. Set vTbl = SelectedTbl; // Set a variable for the target cell. Set vToCell =...
499
jknowles@...
Oct 6, 2000 2:43 pm
Thanks Rick, The script works great. But, I still don't understand a couple of things about my attempt, so I wonder if you could answer the following ...
500
Rick Quatro
rick@...
Oct 6, 2000 3:24 pm
Hi John, 1. Try using ObjEndOffset-1 instead. 3. I am not sure what you mean. Can you be more specific? Thanks. Rick...
501
John Knowles
jknowles@...
Oct 6, 2000 3:31 pm
Rick, I'd like to do something like Select Cell Row(x) Col(y) or vCell = vTbl.RowxIn Tbl.ColyInTbl I know those aren't viable, but is there anything like them?...
502
Philip Sharman
psharman@...
Oct 6, 2000 5:47 pm
I've posted a new sample script to my FrameScripts page: <http://members.home.com/philip.sharman/FrameScripts/my_scripts.htm>. It is called...
503
Rick Quatro
rick@...
Oct 6, 2000 8:31 pm
Hi John, CellColNum is a Cell property that indicates the column number that the cell is in. The numbering starts at 0 for the first column. There is no ...
504
clafran@...
Oct 9, 2000 9:00 pm
Is it possible to search for files to open using wildcards? I need to open AML(Alphabetized Marker List) files of diferent names depending on which book they...
505
Marcus Streets
marcus@...
Oct 10, 2000 8:18 am
... Not as such However you can loop for all files in a directory and use the find string function to look for the AML suffix. Loop ForEach(File) in(DirGuess)...
506
Michael Mueller-Hille...
info@...
Oct 10, 2000 9:11 am
I assume you want to open the AML file in an open book? The way to go would be: + Loop through all book components + Check the BookComponentType property to be...
507
John Knowles
jknowles@...
Oct 10, 2000 11:33 am
Thanks Rick, I've been doing it the way you suggest. I was just wondering if I had missed a cleaner way of going about finding a specific cell. John ... From:...
508
Simon Bate
sbate@...
Oct 10, 2000 8:51 pm
I'm maintaining a list of paragraph names and a count of their occurence in a pair of parallel string lists. I thought I could save some coding by creating a...
509
Michael Silber
msilber@...
Oct 11, 2000 9:32 am
Hi everybody! I'm trying to change the table format of every table in the doc to a specific TblFmt called "Warnhinweis". The effects of my scripts: The TblFmt...
510
Rick Quatro
rick@...
Oct 11, 2000 11:55 am
Hi Michael, Replace this line Set Tabelle.TblTag = TabFormat.TblTag; with this Set Tabelle.Properties = TabFormat.Properties; Rick Quatro Carmen Publishing 716...
511
Michael Silber
msilber@...
Oct 11, 2000 1:15 pm
Hi Rick! Bingo! That's it. Many thanks! Michael...
512
Michael Silber
msilber@...
Oct 11, 2000 5:36 pm
Hi, back again. As I'm new to framescript I guess I'll post one or two other questions in the next days ;-) +++The problem+++ I've written a script that looks...