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 ...
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...
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 ...
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...
Johan Decock
jdecock@...
Feb 3, 2003 8:11 am
3419
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 *...
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...
... 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...
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...
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...
... 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...
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...
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...
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...
... 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...
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,...
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...
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 = ...
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:...
Dan, forget what I wrote but keep the script. You want Update Book BookObject(vYourBook) ShowBookErrorLog(True); The option UpdateBookMasterPages is True by...
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 >...
... 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 ...
... 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?...
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...
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...
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...
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 :...
framescript-users@yah...
Feb 6, 2003 3:30 pm
3443
I am interested as well. ... From: info [mailto:info@...] Sent: Thursday, February 06, 2003 8:50 AM To: framescript-users@yahoogroups.com Subject: Re:...
Hello scripters, I have an element object that I want to duplicate somewhere else without using the clipboard. The element may have descendent elements. ...