... liking, ... Has anyone on this list tried Hedley's suggestion? You can edit the entries with a text editor such as Notepad or VI too. HOWEVER, I haven't...
1424
adamfnewton@...
Oct 2, 2001 6:19 am
In a script I'm writing to automatically insert some text and a hypertext marker, I'm having problems correctly specifying the location where I want to insert...
1425
michael.bell@...
Oct 3, 2001 5:03 am
I will be out of the office from 09/30/2001 until 10/04/2001. I will be in Chicago at Documentum's Momentum 2001 and can only check email spoardically. If you...
1426
pcarey@...
Oct 3, 2001 12:21 pm
Hello All. I want to remove the hard spaces (CTRL + space on Windows) from a string and replace them with "regular" spaces. Get String FromString(MYSTRING)...
1427
Rick Quatro
frameexpert@...
Oct 3, 2001 12:40 pm
Hi Pete, There are certain characters, such as non-breaking spaces, that you can't use directly in a script. You must make a string variable in order to work ...
1428
Johan Decock
jdecock@...
Oct 3, 2001 1:24 pm
Hi, I'm glad FrameScript is finally able to determine which user is logged on and it can read and write ini-files and the registry. So I started testing this...
1429
rsdelong@...
Oct 4, 2001 6:35 am
List, I've been doing some tweeking with a script and came across a little problem. I've got a script that reads information from a table to setup the book...
1430
Johan Decock
jdecock@...
Oct 4, 2001 8:52 am
Code: New ESystem NewVar(sysVar); ... // This happens in a subroutine: Set Scripts2InstallFile='C:' + dirsep + 'AbisConfig' + dirsep + 'FMScripts2Install.txt';...
1431
pcarey@...
Oct 4, 2001 1:01 pm
Rick, thanks. Right on the money, as is your custom. Another question (I think it's been asked before, but I couldn't find it in the archives): Is there anyway...
1432
Johan Decock
jdecock@...
Oct 4, 2001 1:04 pm
This one lets you check the printer settings: Execute FrameCommand KbdPrintSetup; Johan From: pcarey@... on 04/10/2001 13:01 GMT Please respond to...
1433
Rick Quatro
rquatro@...
Oct 4, 2001 1:12 pm
Pete, FrameScript has Print Document and Print Book commands. The print options, such as starting and ending pages and number of copies, are actually ...
1434
Raskob, Elizabeth
elizabeth.raskob@...
Oct 4, 2001 1:35 pm
Rick, You could simplify this a bit: Set vCell = vCell.NextCellInRow; // Search for X and set Index, if not found, // Search for C and set Contents, if not...
1435
Johan Decock
jdecock@...
Oct 4, 2001 2:28 pm
I have made a few scripts with a Windows scripting language (Winbatch) to achieve the changing of the printer. Since I use them in a script that is going to...
1436
Rick Quatro
rquatro@...
Oct 4, 2001 2:52 pm
Thanks, Johan. This is very useful. How do you like the Winbatch program? Would you recommend it? Rick ... From: "Johan Decock" <jdecock@...> To:...
1437
Johan Decock
jdecock@...
Oct 4, 2001 3:03 pm
I would definitely recommend it. I have the compiler version and it's worth every cent it costs (±$500). The interpreter costs a bit over $100. You can try it...
1438
Rick Quatro
rquatro@...
Oct 4, 2001 3:24 pm
... itself. Now that FrameScript has this capability, I might look into that. Even though my hopes are not up too high. (After the time I had to spend to get...
1439
Diane Laverty
DLaverty@...
Oct 4, 2001 7:53 pm
I'm new to this FrameScript stuff (1 week today). A developer here wants to trigger FrameScript automatically after doing the software build. The goal: parse a...
1440
Michael Mueller-Hille...
info@...
Oct 4, 2001 8:38 pm
... Just a few thoughts to this part: You can specify an "Initial script" under FrameScript>Options. So all your developer has to do is to create the spec file...
1441
Dick Girard
tps@...
Oct 5, 2001 12:19 am
Hi Johan, I tried your batch files. The SetDefPrinterToAcrobat batch file is choosing Acrobat PDFWriter rather than Acrobat Distiller. I need to selected...
1442
Klaus Mueller
mueller23@...
Oct 5, 2001 1:01 am
Hi Rick, ... I did some tests setting the DefPrinter. One could set the registry entry via regedit: - - - Set vRegFile = Session.TmpDir +DirSep+...
1443
Johan Decock
jdecock@...
Oct 5, 2001 7:00 am
Sorry for that. We have customized the installation routine and we don't install Acrobat PDFWriter, so I never noticed this. I hope this one works for you: ...
1444
Johan Decock
jdecock@...
Oct 5, 2001 7:02 am
I'm going to look further into this. Odd that I didn't think of regedit before. Of course, when one has one tool that reliably changes printers, one isn't keen...
1445
Johan Decock
jdecock@...
Oct 5, 2001 9:04 am
This is the script I use as initial script. Since a few days ago I started using an .ini-file to pass parameters to it. This is a lot easier than having to...
1446
jakob@...
Oct 5, 2001 9:41 am
Hi, I just subscribed to the list. I already found some very useful information on creating and inserting new SGML elements in a Frame document. There has...
1447
Michael Mueller-Hille...
info@...
Oct 5, 2001 10:24 am
... Jakob, I haven't done any SGML-related work yet, but I browsed a bit in my own FOS Browser (see Tools section on my website) and that gives me the ...
1448
jakob@...
Oct 5, 2001 10:53 am
Michael, thanks for your help, and thanks for your FOS browser, which -- funnily enough -- I had downloaded and was looking at when I read your response. Using...
1449
jakob@...
Oct 5, 2001 11:04 am
while I am posting questions ... here's another one. I am evaluating FrameScript, and have written a script that retrieves data from a database, mainly XREF...
1450
Michael Mueller-Hille...
info@...
Oct 5, 2001 11:24 am
... That is my understanding. Remember that Attribute Values can be a StringList as well... - Michael ... Go to <http://cap-studio.de> for free tools: *...
1451
Michael Mueller-Hille...
info@...
Oct 5, 2001 11:33 am
... Even lists are strictly numerical ordered and always one-dimensional. So you have to keep multiple parallel, explicitely named lists. :-( Well, FrameScript...
1452
Johan Decock
jdecock@...
Oct 5, 2001 11:44 am
How about ini-files to store your data? They are quick to access and it's not too much hassle. (For the more simple tasks anyway) The basic structure is as...