Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

framescript-users · FrameScript Users

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 901
  • Category: Software
  • Founded: Aug 20, 1999
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 346 - 375 of 10492   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
346 jlance@... Send Email Jun 1, 2000
12:39 pm
Hello, The only way I can think to phrase this question is to give it as a scenario. Let's say I import paragraph formats from a template into a document, but...
347 Rick Quatro
rquatro@... Send Email
Jun 1, 2000
1:18 pm
The paragraph property for the asterisk is FormatOverrides. If it is equal to 0 (zero), there are no overrides in the paragraph; if it is equal to 1, there are...
348 mike mcguire
mikem@... Send Email
Jun 1, 2000
5:31 pm
Hello all, We were trying to use the paragraph property and found that it is "FormatOverride" -- no "s". Just thought we'd let you know . . . ... From: Rick...
349 Brad Engels
bradford@... Send Email
Jun 12, 2000
8:59 pm
Hi everyone :) I spent a little time developing a couple sorting methods/subroutines, because we had previously only used Bubble Sort (which I'm not a big fan...
350 Rick Quatro
rick@... Send Email
Jun 13, 2000
1:31 am
Brad, Thanks for posting your sorting routines. Both seem to work nicely and will be very useful. I haven't yet figured out your logic, but when I do, it would...
351 andrew.brenton@... Send Email Jun 14, 2000
6:23 am
I admit that I'm only a mediocre user of FrameScript, but I've hit a dead-end with this one. Basically, I'm trying to add my own menus and menu commands to...
352 Rick Quatro
rquatro@... Send Email
Jun 14, 2000
12:06 pm
Andrew, In order for a script to respond to a user-defined menu item, it has to be an Event script. Event scripts reside in memory, waiting to be called. All ...
353 David Watts
dwwatts@... Send Email
Jun 15, 2000
2:31 pm
All, How do I search for a HardSpace (Ctrl+Space) inside a text string using the Find command? Is there a hex equivalent? Thanks. David....
354 Rick Quatro
rick@... Send Email
Jun 15, 2000
4:01 pm
David, You have to find the ASCII value of the character, set a variable for the value, and then search using the variable. For example, the ASCII value for a...
355 Cybercough
cybercough@... Send Email
Jun 15, 2000
4:48 pm
Hi, I need to locate every anchored frame on a book and insert a new pgf right before it. But my biggest trouble is locating the anchored frames. I've tried...
356 David Watts
dwwatts@... Send Email
Jun 15, 2000
5:02 pm
Thanks Rick. That's exactly what I needed. Much appreciated. David....
357 Rick Quatro
rick@... Send Email
Jun 15, 2000
9:53 pm
Ivo, You would have to pass an actual TextFrame variable into the "In" parameter of the loop. However, I have had problems with this kind of loop in the past;...
358 Michael Mueller-Hille...
michael@... Send Email
Jun 27, 2000
3:40 pm
Hi Rick and maybe other gurus, I wonder what the MainFlowInDoc is? Is it the first tagged flow? What if you have more than one tagged flow in your docs? I have...
359 Rick Quatro
rick@... Send Email
Jun 27, 2000
5:33 pm
Hi Michael, The MainFlowInDoc is the bottom-most (?) tagged flow on a document's Right master page. Of course, this usually Flow A. If you create a new text...
360 Tim Meiers
tim.meiers@... Send Email
Jun 29, 2000
8:29 pm
Hi, I'm a Framescript newbie and need to separate a single cross reference into two different ones. Here's the manual process that I'm doing. Select the cross...
361 Rick Quatro
rick@... Send Email
Jun 29, 2000
10:32 pm
Tim, To make sure I understand you, email me a small document that has a couple of *before* and *after* cross-references in it. Thanks. Rick Quatro Carmen...
362 Rick Quatro
rick@... Send Email
Jun 29, 2000
10:38 pm
Hi Tim, Here is a script that will solve your problem. Explanation is below the script. Rick Quatro Carmen Publishing 716 659-8267 rick@... ...
363 Tim Meiers
tim.meiers@... Send Email
Jun 30, 2000
1:19 pm
Thanks, Rick. You're the Master! Works like a champ. I appreciate your help. Tim Meiers 512.246.2139 ... "If you want something really important to be done...
364 egriffin@... Send Email Jul 7, 2000
3:28 pm
Hi I am very much a newbie at writing FrameScripts and I am also not a programmer so please bear with me. However I haven't run into very many problems so far....
365 Michael Mueller-Hille...
michael@... Send Email
Jul 7, 2000
4:09 pm
egriffin@... hat am 07.07.2000 17:28 Uhr ... Zero is meant as the number zero, which is equivalent to false or nothing. So try Set...
366 egriffin@... Send Email Jul 10, 2000
8:54 am
... Thanks for the suggestion. When I tried this it produces a file called 0.ps. Erica Erica Woosey-Griffin Technical Author Schlumberger Geoquest 11 Foxcombe...
367 elyse@... Send Email Jul 10, 2000
8:43 pm
I am new to FrameScript and am trying to figure out how to write a script that would allow me to assign cellheading and cellbody paragraph tags to all tables...
368 Rick Quatro
rick@... Send Email
Jul 10, 2000
9:09 pm
Hi Elyse, Here is some code to get you started. Copy and paste it in the Script Window and click Run. Comments begin with //. // Test for an active document. ...
369 elyse@... Send Email Jul 10, 2000
9:56 pm
Hi Rick, Your script worked instantly to assign CellHeading and CellBody paragraph tags to fifty test tables. Since I have been using Frame's default...
370 Michael Mueller-Hille...
michael@... Send Email
Jul 20, 2000
7:28 pm
Hello, is this known by someone? I try to specify start and end pages before opening the print dialog (Windows) like that: Set vCurDoc.PrintStartPage =...
371 Rick Quatro
rick@... Send Email
Jul 20, 2000
11:20 pm
Hello Michael, What happens if you use the Print command instead of the Fcode? Set vCurDoc.PrintStartPage = vFirstNum; Set vCurDoc.PrintEndPage = vLastNum; Set...
372 Michael Mueller-Hille...
michael@... Send Email
Jul 21, 2000
8:18 am
Hi Rick, you were right - it seems that opening the dialog applies some default settings. BTW, the file was created in the directory of the script, so I added...
373 peter.dawes@... Send Email Jul 25, 2000
3:10 pm
Hello all, I am taking my first steps with FrameScript, thanks to Rick Quatro's introduction (www.frameexpert.com) and by reading through the example scripts...
374 rick@... Send Email Jul 25, 2000
5:28 pm
Hi Peter, What you have to do is pick up and apply the paragraph format properties of the paragraph that contains the found text. The definition of the Default...
375 peter.dawes@... Send Email Jul 26, 2000
12:28 pm
Thanks very much Rick! This was a big help. After your mail put me on the right track, I added the lines below (before applying the new properties), which...
Messages 346 - 375 of 10492   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