Hi all, I recognized the following issue with FS 3.0 R1 (Win/XP): - Very huge memory usage - No garbage collection after finishing standard scripts -...
TextLines are interesting because, while they are graphic objects, they are also treated like text objects. Here is a snippet of code that applies text ...
Rick Quatro
frameexpert@...
Feb 2, 2004 2:42 pm
4577
Rick thank you for your help. This was the right information. best regards Christian Schafer...
Klaus, Tried out the samples you listed and I noticed the same thing. Here's one that's even more interesting. No script running at all. - start FrameMaker -...
Hello there, I try hard to speed up the processing speed of may script, which imports several hundreds of other files (grafics, frame- and word-docs e.g.) into...
1 and 0 work for me all the time. I know you say it's at the beginning and end of your script, but you might want to put a "write console 'got to displaying';"...
Check your semicolon ; usage (command terminators) around the lines you are setting your Displaying, the compiler can be finicky sometimes. And like Simon...
I noticed an updated FrameScript 3.0 syntax list for TextPad in the files section. Does anyone have an updated UltraEdit WORDLIST.TXT for FS3.0? Thanks, Eric...
Hi Malcolm, Sorry I couldn't reply earlier. Thank you so much for your script. I tried your script with my text with long lines, and it works great. But I...
Didn't have any luck with Rick's intriguing suggestion about accessing the type-in properties. Setting vDoc.Properties didn't throw any errors, but neither did...
Hello Klaus, ... just a note for the users of the script CreatePDF.fsl: The registry key on my Win2000 SP4 is slightly different to the scripts definition. The...
... Hmmm ... I found it, but only in a copy of that script with which I tried some distiller calls. But I didn't change the path (as far as I remember what I...
Hi Yosuke. I modified my script to write an additional line after exhausting the stringlist. I set vstr to a string of 280 characters, and write the ...
Hello Carl, ... Please explain where font settings are changed: In FrameMaker? Does this also occur when you change the FM printer to Distiller and to another...
Yosuke, ... With FrameScript 3, this is possible with RunEslBatch.exe. From the FS3 User's Guide: "RunEslBatch.exe is a batch oriented windows program that...
Malcolm, ... I was able to write *very* long textlines (more than 100 MB) to a file on Windows XP using FS 2.1 and FS 3.0. Check out the script below. Probably...
Hello Klaus, first of all, the font problem occurred with a script of mine, not your's. Furthermore, I had that problem yesterday only; today all is working ...
Actually, you need to reverse the last two commands. Set Displaying = False; . . . Set Displaying = True; Execute Fc KbdRefreshWin; Rick Quatro Carmen...
Rick Quatro
frameexpert@...
Feb 4, 2004 1:16 pm
4597
I'm creating a dialog box from which the user can select one of the open docs. We use the AutoText plug-in, so all of the files with AutoText definitions...
Hello Rick, ... You could check for those paths before adding the DocName to your list: Find String(FMHomeDir+DirSep+'fminit') InString(vDoc.Name) NoCase...
... Thanks, Klaus. That brings me closer. When I add this code and run my script, the files in the AutoText folder are hidden. But the files in the fminit...
I wrote my first FrameScript and added it to the Scipts submenu. I'd like to apply a keyboard shortcut for the script, but the FrameScript docs don't seem to...
Rick, No, that was my fault: Instead of FMHomeDir+DirSep+'fminit' try FMHomeDir+'fminit': Find String(FMHomeDir+'fminit') InString(vDoc.Name) NoCase Prefix...