Hello Scripters, Code Finder is a PDF file and Access database file that shows FrameScript properties as related to the FrameMaker interface. You can click on ...
3416
rsdelong <rsdelong...
rsdelong
Feb 3, 2003 6:07 am
Hello scripters, I'm trying my hand at getting data out of our database and I'm having a time trying to figure out the Select syntax. If I use the query code...
3417
michael.kaemper@...
michaka67
Feb 3, 2003 8:03 am
Hi Rick, you don't need so many brackets. I miss one parenright at the end of your select string. And put your search string "S*" only in quotesingles. Also ...
3418
Johan Decock
jdecock@...
Feb 3, 2003 8:11 am
Hi Rick, This is what I do to avoid having to put quote characters in my queries: This is in an initializer script: SET EDB_QUOTE = quote; SET EDB_QUOTEDSPACE...
3419
"Müller, Klau...
mueller_itl
Feb 3, 2003 8:36 am
Hi Rick, I recently made a short test whether/how to use brackets, quote chars and wildcard. You may want to take a look at the attached result. Instead of *...
3420
Michael Müller-Hil...
michaelmh
Feb 3, 2003 8:59 am
Rick, whether the database understands the SQL you send it is not a case for FS. It just sends the query. To build my queries, I use MS Query (part of the...
3421
rsdelong <rsdelong...
rsdelong
Feb 3, 2003 4:04 pm
... Müller-Hillebrand ... First of all, thanks for all the quick responses and varieties of solutions. This group is the best! I created my query and viewed...
3422
Bryan <deltamaninc...
deltamanincali
Feb 3, 2003 9:03 pm
Hi folks, First off, I apologize for my complete and total ignorance of FrameScript and nearly complete ignorance of Frame. I'm a developer that got rooked...
3423
Klaus Mueller
klaus_mueller23
Feb 3, 2003 10:42 pm
Hello Bryan, ... We're talking about reading FrameMaker books (and docs) and outputting FM docs, do we? Does your cmd reference live in the MainFlow (only), do...
3424
rsdelong <rsdelong...
rsdelong
Feb 4, 2003 12:08 am
... Bryan, I can't believe that someone is accually trying to do what we were forced to do as well. Your "fortunate" situation is puzzling though. If each...
3425
Bryan <deltamaninc...
deltamanincali
Feb 4, 2003 6:02 pm
Hi folks, Wow, maybe there's something to this whole FrameScript user group idea after all. Thanks to everyone for their help, especially to Rick Quattro who...
3426
dan visel
viselsparknotes
Feb 4, 2003 9:50 pm
Is there a way in FrameScript to run the Apply Masterpages command (Format > PageLayout > Apply Masterpages)? I'm running a batch script to reformat files...
3427
hedley_finger@...
hedleyfinger
Feb 5, 2003 4:01 am
Rick: This is an amazing thing you have done. The only quibble I would have is that, say, if you are looking at the Paragraph Designer nowhere can you see the...
3428
Michael Müller-Hi...
michaelmh
Feb 5, 2003 8:42 am
... Dan, I cannot find it in the reference either, but you can call any menu command using the Execute FC command. You just have to find the FC for the...
3429
dan visel
viselsparknotes
Feb 5, 2003 5:43 pm
This works beautifully, thanks so much (it's FC 1838576). One problem is that it always throws up "masterpages will be overwritten, okay?" dialogue box,...
3430
lisakc70 <lisac@.....
lisakc70
Feb 5, 2003 7:16 pm
I'm using FrameScript 2 for Frame 7 on a Mac. My goal is to loop through the graphics in a structured document and move the Image element from one location to...
3431
Rick Quatro
frameexpert
Feb 5, 2003 7:43 pm
Lisa, The problem is likely your cutting and pasting the graphic. That can change the internal Object Id on the graphic, so that the Set vGraphic = ...
3432
Sean Brierley
seanb_us
Feb 5, 2003 7:48 pm
I have not found a way to suppress that message box. Is there a way? Anyone know fer shure? Cheers, Sean...
3433
Klaus Mueller
klaus_mueller23
Feb 5, 2003 7:57 pm
Hi Lisa, Two notes: -- when moving or deleting object within a loop, you probably break the loop cycle. To avoid that, store the "next object" before deleting:...
3434
Michael Müller-Hil...
michaelmh
Feb 5, 2003 8:02 pm
Dan, forget what I wrote but keep the script. You want Update Book BookObject(vYourBook) ShowBookErrorLog(True); The option UpdateBookMasterPages is True by...
3435
asmohr <asmohr@......
asmohr
Feb 5, 2003 9:56 pm
Hi Rick, Wow. ... ... Some minor comments to help polish it as full product: - The installation instructions have some glitches. Under W2K it's not: Start >...
3436
asmohr <asmohr@......
asmohr
Feb 5, 2003 9:59 pm
... One more thing, which I'm not even sure is possible. When the PDF opens, 100% size is a little smaller than the original FrameMaker dialogs. Is there any ...
3437
asmohr <asmohr@......
asmohr
Feb 5, 2003 10:13 pm
... When you close Acrobat, it asks about saving the changes in the file. Does everything get broken if you accidentally say Yes, or is that an OK thing to do?...
3438
Rick Quatro
frameexpert
Feb 6, 2003 12:33 pm
August, Thank you for your generous feedback. No, nothing will break if you save the changes. I will add a close button to each page that will prevent the Save...
3439
lisakc70 <lisac@.....
lisakc70
Feb 6, 2003 2:36 pm
Thanks for the tips, Klaus. I appreciate the help. Unfortunately, I think Rick must be right in his thought that cutting and pasting the graphics does...
3440
Rick Quatro
frameexpert
Feb 6, 2003 3:05 pm
Lisa, I can't provide too much specific help today because of a deadline, but there is a graphic property called FrameParent. It is actually possible to move a...
3441
info
fcicomunicacao
Feb 6, 2003 3:14 pm
Hi Bryan ... I am interested in your solution. In you can, post it here. Thanks Furia...
3442
framescript-users@yah...
Feb 6, 2003 3:30 pm
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the framescript-users group. File :...
3443
Kowalski Pete-PKOWALS1
pelpme
Feb 10, 2003 4:16 pm
I am interested as well. ... From: info [mailto:info@...] Sent: Thursday, February 06, 2003 8:50 AM To: framescript-users@yahoogroups.com Subject: Re:...
3444
Rick Quatro
frameexpert
Feb 11, 2003 8:17 pm
Hello scripters, I have an element object that I want to duplicate somewhere else without using the clipboard. The element may have descendent elements. ...