Andy, you'll notice this was cross-posted to the framescript-users list? You need that add-on package to run these scripts... Doesn't have anything to do with...
62
Rick Quatro
frameexpert@...
Oct 1, 1999 1:43 pm
If you just want the names of the formats, you can use a simple loop. This example writes the names to the FrameMaker Console window. Loop ForEach(PgfFmt)...
63
Wim Hooghwinkel
wimh@...
Oct 1, 1999 1:50 pm
Thanks, works well. Now, do you know how to create an index of used Pargraph fomats? Wim Hooghwinkel DTP tel: +31 (0) 23 - 548 48 91 mailto:wimh@... ...
64
Andy Lester
andy@...
Oct 1, 1999 1:56 pm
... Am I missing something with all this Frame programming stuff? I haven't seen anything in the manuals about it. Is it some deep dark secret only you Old...
65
Marcus Streets
marcus@...
Oct 1, 1999 2:04 pm
... Yes and no, Frame has a publically available API called FDK. See the Adobe site for details - it is freely downloadable but support costs an arm and a leg....
66
Rick Quatro
frameexpert@...
Oct 1, 1999 2:08 pm
In this case you need a loop inside of a loop. The outside loops through the paragraph formats; the inside loop compares the current paragraph format name with...
67
jhlakey@...
Oct 1, 1999 8:02 pm
jhlake-@... wrote: original article:http://www.egroups.com/group/framescript-users/?start= 37 ... <<previous msgs snipped>> OK, I've made a few...
68
Wim Hooghwinkel
wimh@...
Oct 3, 1999 8:07 am
Who can advise me on the following: I want a script to select the next Anchored Frame, scale it (by 75%, or by a variable wich will have to be defined first),...
69
Wim Hooghwinkel
wimh@...
Oct 3, 1999 8:15 am
Who can advise me on the following: I want a script to search for a string like : 23.5 in. (600 mm). the inch values will differ, from 1 to 3 digits, plus 1 or...
70
Rick Quatro
frameexpert@...
Oct 4, 1999 2:38 am
... a ... insertion ... Hi Wim, The best way to approach this is to look in the FrameScript Reference for the object you are trying to change. In this case,...
71
Rick Quatro
frameexpert@...
Oct 4, 1999 2:38 am
Your last statement is where you should begin. If you can find a logical way to search, you can apply it to solve all kinds of problems. I would suggest that...
72
Wim Hooghwinkel
wimh@...
Oct 4, 1999 8:50 am
Thank you Rick Now, what syntax should I use to check the properties of the found textstring: what character format it uses, if it is the only text in the ...
73
Rick Quatro
frameexpert@...
Oct 4, 1999 12:58 pm
See page 71 of the Scriptwriter's Reference for the Get TextList command. You will need to get the CharPropsChange property to test for a character format. To...
74
Chris Grigg
chrisg@...
Oct 6, 1999 9:12 am
75
Thorsten Peter
Thorsten.Peter@...
Oct 7, 1999 12:48 pm
I want to apply a condition format to a table row. As I already know, there exists the (not documented) row property 'InCond', with InCond being an IntList...
76
Rick Quatro
frameexpert@...
Oct 8, 1999 5:41 pm
I haven't quite figured this one out yet. The IntList value for each Condition Format is not persistant across documents OR sessions. In other words, the value...
77
Futaki, Yumeko
yum@...
Oct 14, 1999 10:49 am
Hi Framescript Experts,. Are there any ways to do the following: - Group all the objects in an anchored frame or - Ungroup a particular group I tried to select...
78
jlance@...
Oct 14, 1999 11:37 am
Well, here's my stab, hopefully it will start you off on the right foot and someone else can fill in the holes a little better: To create a new group you use...
79
Futaki, Yumeko
yum@...
Oct 14, 1999 12:12 pm
Hi John, ... (snip) ... Thank you!! After my last mail, I found this New xxx command in the Reference, but didn't find how to add objects in it. Your method...
80
docuprose@...
Oct 14, 1999 12:26 pm
In calling a subroutine, all the examples I've seen pass back only one value. Is this really the case? Nancy McCoy docuprose...
81
Marcus Streets
marcus@...
Oct 14, 1999 12:31 pm
... Subroutines can only return a single variable, however they can affect variables that are global to the script. As far as I am aware only the vlriables...
82
Wim Hooghwinkel
wimh@...
Oct 14, 1999 2:41 pm
How can I get the scripts-menu in my menubar, (run an initial script?) or create a toolbar with my favorite scripts? Wim Hooghwinkel DTP tel: +31 (0) 23 - 548...
83
cguillermo@...
Oct 14, 1999 4:14 pm
82 ... script?) or ... Hi Wim, 1. You have to create a Script with the name "initial.fsl" you can put the name that you want for you Script. // FrameScript56 =...
84
Wim Hooghwinkel
wimh@...
Oct 15, 1999 7:29 am
Thank you for responding. I got this far, but what i wanted is to get the Scripts menu item (wich is now part of the FrameScript Menu) on the menu bar itself. ...
85
Rick Quatro
frameexpert@...
Oct 15, 1999 9:15 pm
Hi Wim, Here is the short answer. Put the following code in your initial script: Get Object Type(Menu) Name('!MakerMainMenu') NewVar(vMainMenu); Get Object...
86
rickhenkel@...
Oct 21, 1999 1:04 pm
I have very little experience with FrameScript (so far), and I'm under the gun in my department to create a script we can use immediately. We're reissuing...
87
susan.fisher@...
Oct 21, 1999 4:33 pm
I am a total newbee at this and am trying to create a menu item that will insert a table with an anchored frame inside of it. The 1st Part of the script below ...
88
susan.fisher@...
Oct 22, 1999 5:00 pm
Duh. I just figured out how to do it, so please don't waste any more time on my question. If anyone would like to use it, here is what I came up with. Sue ...
89
Wim Hooghwinkel
wimh@...
Oct 26, 1999 3:19 pm
Can anyone advise me on a script to set the view options for all files in a book. (I want to toggle between show/not show all graphics) thnx Wim Hooghwinkel ...
90
jlance@...
Oct 26, 1999 3:25 pm
Funny, I just did this the other day. Here it is (0 = don't show, 1 = show): set Doc = ActiveDoc; set Doc.ViewNoGraphics=1; - John Can anyone advise me on a...