Running any of the Eform tutorials from the FS 3.0 installation or any of the FS3 scripts from Klaus Müller or some of the items in the FrameScript menu...
I still can't get a XREF in a different doc than the marker. Here is my New Marker line: // ------- New Marker NewVar(vMarker) DocObject(vCurrentDoc) ...
Hello Klaus, ... Are you sure you run those scripts with a valid FS3 installation (and not with FrameScript 2.1)? Does your log file tell (at least!) "Version...
Hello Rick, ... Adding a DocObject to any command normally doesn't *do* anything except telling FrameScript to what document you actually want to add an...
Hi Klaus- I simplified the script somewhat. It still doesn't find the marker in the first document though. What makes the following line know to look at...
Hello Rick, ... Nothing - you missed the XRefFile parameter. Try it with this: New Document NewVar(vNewDoc) Portrait; Set vPgf = vNewDoc.MainFlowInDoc; Loop...
... The use of vCurrentDoc probably originated with me. My rationale was to distiguish the document currently being processed from any other document, ...
Rick Quatro
frameexpert@...
Jan 3, 2004 1:34 pm
4463
Dang! It still doesn't work. It works for you? I made a new script by copying the routines you gave me and it still doesn't work. I used the XRefFile property...
Has anyone tried the .Sort method on an EVector? I cannot get it to sort. Does anyone know of a problem with this command? Try this (it makes a list of folder...
I discovered a bug in the GET String FromString command. The RemoveTrailing() option sometimes works and sometimes doesn't. I was lucky I had a long-enough...
Hello Dick, RemoveTrailing('TrailingCharactersToRemove') does work as specified. Note that 'LeadingCharactersToRemove' is a list of characters instead of a...
Hello Rick, You did use an invalid variable for the text location. Instead of New XRef Format('Heading & Page') NewVar(vXRef) TextLoc(vPgf) try New XRef...
Hi Klaus, The RemoveTrailing('TrailingCharactersToRemove') option does not work for me. Perhaps it has to with the FM version or the OS? I am using FM 6.0 on ...
RemoveTrailing doesn't remove a string, it removes all matching characters. You have told it to strip all ".", "f", "s", and "l" characters at the end of the...
I ran into a problem when trying to use Rick's ASCII Finder script (developed before FS3). The script displayed every InvtValue from 0 to 256 and never...
Dick, I've had similar experiences with vPos. It might be that FrameScript's garbage collection isn't 100% perfect, so if you ran a script a bit earlier that...
Dick, Are you using an Initial Script? Variables declared in an Initial Script are global (but read-only). If you are using an Initial Script, vPos is probably...
Rick Quatro
frameexpert@...
Jan 6, 2004 1:40 am
4477
Hi Rick, I checked my Initial Script, and it does not contain vPos. But I made vPos a local variable in the ASCII Finder code, which solved the problem. So now...
Thanks, Simon. I think you are right about the imperfect garbage collection. I made vPos a local variable, and that solved the problem. Regards, Dick...
Hi Mike, 1) I don't know of any way to do this with the ini file or registry. 2) FrameScript, like the FDK, has ways of suppressing alerts for most functions....
Rick Quatro
frameexpert@...
Jan 7, 2004 12:30 pm
4481
Hi... Does anyone know, how to convert all referended text insets to text by script? Thankx a Lot.....
Ok - I've found a solution by myself ;-) =================================== Set vTI = ActiveDoc.FirstTiInDoc; Loop While(vTi) New TextLoc NewVar(vTLoc)...
With FS 2.1 R3, is this the only way to execute an external command? Execute Hypertext Command('message system notepad.exe test.txt'); This is, of course,...
Dear experts, I try to understand the new form controls and have written a test program for that purpose: http://www.daube.ch/anything_for_all/FormTest.fsl My...