Search the web
Sign In
New User? Sign Up
framescript-users · FrameScript Users
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 4574 - 4603 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4574
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 -...
Klaus Mueller
klaus_mueller23
Offline Send Email
Feb 1, 2004
4:33 pm
4575
Hi scripters Does anyone know how to apply a new text and a new font type to a given textline? Thanks to all. Christian...
chris_schaefer2000
chris_schaef...
Offline Send Email
Feb 2, 2004
9:09 am
4576
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@...
Send Email
Feb 2, 2004
2:42 pm
4577
Rick thank you for your help. This was the right information. best regards Christian Schafer...
chris_schaefer2000
chris_schaef...
Offline Send Email
Feb 2, 2004
3:06 pm
4578
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 -...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Feb 2, 2004
3:57 pm
4579
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...
framemaker@...
ralfloebelt
Offline Send Email
Feb 2, 2004
5:34 pm
4580
Try using True and False instead of 1 and 0. I haven't tried it with 1 and 0, but I always use True and False and it works. Dick...
Dick Girard
dick_girard
Offline Send Email
Feb 2, 2004
8:04 pm
4581
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';"...
Simon Bate
simonbate
Offline Send Email
Feb 2, 2004
8:18 pm
4582
Check your semicolon ; usage (command terminators) around the lines you are setting your Displaying, the compiler can be finicky sometimes. And like Simon...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Feb 2, 2004
9:26 pm
4583
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...
Dillon, Eric W - Norm...
eric_w_dillon
Offline Send Email
Feb 2, 2004
9:31 pm
4584
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...
Yosuke Ichikawa
ichikawayosuke1
Offline Send Email
Feb 3, 2004
1:11 am
4585
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...
gar77ner
Offline Send Email
Feb 3, 2004
1:36 am
4586
... I'd like to remind everyone on this list to try Klaus Müller's "PrettyPrint.fsl" script (available in the files section of this group or at...
Michael Müller-Hil...
michaelmh
Offline Send Email
Feb 3, 2004
9:49 am
4587
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...
gcarladwin
Offline Send Email
Feb 3, 2004
9:56 am
4588
Hello Guido, ... Where did you saw "AppPaths" in the script? The script (and Windows XP) do use "App Paths". Kind regards, Klaus...
Klaus Mueller
klaus_mueller23
Offline Send Email
Feb 3, 2004
10:16 am
4589
... 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...
gcarladwin
Offline Send Email
Feb 3, 2004
1:02 pm
4590
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 ...
Malcolm Mclean
mmclean_email
Offline Send Email
Feb 3, 2004
1:28 pm
4591
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Feb 3, 2004
2:31 pm
4592
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Feb 3, 2004
4:34 pm
4593
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...
Klaus Mueller
klaus_mueller23
Offline Send Email
Feb 3, 2004
4:56 pm
4594
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 ...
gcarladwin
Offline Send Email
Feb 4, 2004
9:58 am
4595
Hi, you might try this: Set Displaying = False; . . . Execute Fc KbdRefreshWin; Set Displaying = True; Cheers, Saito...
saito_1998
Offline Send Email
Feb 4, 2004
12:57 pm
4596
Actually, you need to reverse the last two commands. Set Displaying = False; . . . Set Displaying = True; Execute Fc KbdRefreshWin; Rick Quatro Carmen...
Rick Quatro
frameexpert@...
Send Email
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...
Rick A. Henkel
rickhenkel
Offline Send Email
Feb 4, 2004
2:11 pm
4598
Hello Rick, ... You could check for those paths before adding the DocName to your list: Find String(FMHomeDir+DirSep+'fminit') InString(vDoc.Name) NoCase...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Feb 4, 2004
2:30 pm
4599
... 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...
Rick A. Henkel
rickhenkel
Offline Send Email
Feb 4, 2004
2:54 pm
4600
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...
keith.soltys@...
keithtsx
Offline Send Email
Feb 4, 2004
3:00 pm
4601
Rick, No, that was my fault: Instead of FMHomeDir+DirSep+'fminit' try FMHomeDir+'fminit': Find String(FMHomeDir+'fminit') InString(vDoc.Name) NoCase Prefix...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Feb 4, 2004
3:13 pm
4602
Keith, ... FS 2: Scriptwriter's Reference, Chp 1: Command Reference: Install Script FS 3: Basics Guide, Chp 10: Script Commands: Install Script Ctl-F8 ^/F8...
"Müller, Klaus"
klaus_mueller23
Offline Send Email
Feb 4, 2004
3:22 pm
4603
Works perfectly. As usual, you've been a great help! Thanks! Rick...
Rick A. Henkel
rickhenkel
Offline Send Email
Feb 4, 2004
3:30 pm
Messages 4574 - 4603 of 9208   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help